sparfenyuk/mcp-proxy
A bridge between Streamable HTTP and stdio MCP transports
Platform-specific configuration:
{
"mcpServers": {
"mcp-proxy": {
"command": "npx",
"args": [
"-y",
"mcp-proxy"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://codecov.io/gh/sparfenyuk/mcp-proxy)
The mcp-proxy is a tool that lets you switch between server transports. There are two supported modes:
Run a proxy server from stdio that connects to a remote SSE server.
This mode allows clients like Claude Desktop to communicate to a remote server over SSE even though it is not supported natively.
graph LR
A["Claude Desktop"] <--> |stdio| B["mcp-proxy"]
B <--> |SSE| C["External MCP Server"]
style A fill:#ffe6f9,stroke:#333,color:black,stroke-width:2px
style B fill:#e6e6ff,stroke:#333,color:black,stroke-width:2px
style C fill:#e6ffe6,stroke:#333,color:black,stroke-width:2pxThis
Loading reviews...