MCP.so
Sign In

MCP SSE Proxy Server

@jinyalong

About MCP SSE Proxy Server

Start any MCP Server remotely using the MCP standard protocol.

Basic information

Category

Other

License

MIT

Runtime

python

Transports

stdio

Publisher

jinyalong

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "mcpproxy": {
      "command": "python",
      "args": [
        "main.py"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is MCP SSE Proxy Server?

The MCP SSE Proxy Server is a Server-Sent Events (SSE) based Model Context Protocol (MCP) proxy server that enables remote execution of MCP servers using the standard MCP protocol. It supports both shared and independent session modes.

How to use MCP SSE Proxy Server?

Configure via environment variables (AUTH_KEY, SHARED_SESSION, MCP_SERVER_CONFIG) and run the server using Python (python main.py) or Docker (docker run codefriday123/mcpproxy:1.0). Connect clients to the GET /sse endpoint and send JSON-RPC messages to the returned message endpoint via POST /messages.

Key features of MCP SSE Proxy Server

  • SSE long connection support for server push
  • JSON-RPC 2.0 message format support
  • Both shared and independent session modes
  • Dynamic session environment configuration via request parameters
  • Automatic connection keep-alive (30-second heartbeat)
  • Built-in support for NPX and UVX STDIO process deployment

Use cases of MCP SSE Proxy Server

  • Deploy a single proxy server serving multiple users with individual GitHub credentials
  • Integrate with Chrome/Chromium for browser-based MCP servers
  • Bundle with databases for data manipulation MCP servers
  • Package with development tools for code-related MCP servers
  • Create specialized MCP server clusters with custom routing

FAQ from MCP SSE Proxy Server

What session modes are available?

The server supports two modes controlled by SHARED_SESSION: shared mode (default, all clients share one MCP session) and independent mode (each client creates a separate MCP session).

How do I secure the server?

Set the AUTH_KEY environment variable; all requests must then provide this key as a URL parameter auth_key.

How can I dynamically configure environment per session?

In independent session mode, pass custom environment variables as URL query parameters on the SSE connection (e.g., GET /sse?auth_key=xxx&GITHUB_PERSONAL_ACCESS_TOKEN=ghp_xxxx).

How do I run the server with Docker?

Pull the image codefriday123/mcpproxy:1.0 and run with -p 8000:8000, setting AUTH_KEY, SHARED_SESSION, and MCP_SERVER_CONFIG environment variables.

How can I integrate this server with Cursor?

Add an entry to Cursor's mcp.json configuration with the server’s SSE URL and the auth_key parameter.

Comments

More Other MCP servers