Back to Home
jcornell3 icon

universal-cloud-connector

Verified Safe

by jcornell3

Overview

The Universal Cloud Connector acts as a protocol adapter, enabling Claude Desktop to communicate with remote SSE-based MCP servers via HTTP/SSE instead of stdio.

Installation

Run Command
node dist/index.js

Environment Variables

  • server_url
  • api_token

Security Notes

The server employs Bearer token authentication for all requests, and the documentation explicitly recommends using HTTPS for production environments, rotating tokens regularly, and not committing tokens to version control. The application does not use `eval` or other direct code execution methods on user input. JSON payloads from stdin and SSE are parsed using `JSON.parse`, which is generally safe, handling malformed input as errors rather than arbitrary code execution. The bridge itself does not expose any network ports, acting solely as a client to the remote SSE server, which is a good security practice. A `default-api-key` is used in development examples, which should be changed to a strong, unique token in production to avoid security risks. The overall security depends on the robustness of the remote MCP server it connects to and the secure management of the `api_token`.

Similar Servers

Stats

Interest Score0
Security Score8
Cost ClassLow
Avg Tokens300
Stars0
Forks0
Last Update2025-12-06

Tags

MCPClaude DesktopProtocol AdapterSSENode.js