MCP.so
登录

MCP Gateway, Server, and Client

@boilingdata

关于 MCP Gateway, Server, and Client

An MCP stdio to HTTP SSE transport gateway with example server and MCP client

基本信息

分类

其他

许可证

MIT

运行时

node

传输方式

stdio

发布者

boilingdata

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "mcp-server-and-gw": {
      "command": "npx",
      "args": [
        "mcp-server-and-gw",
        "http://localhost:8808/"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is MCP Gateway, Server, and Client?

A bridge that converts MCP’s stdio transport to HTTP Server-Sent Events (SSE), enabling Claude Desktop (which only supports stdio) to connect to remote MCP servers. Aimed at developers building or testing MCP-based tools and resources.

How to use MCP Gateway, Server, and Client?

Install globally with npm install -g mcp-server-and-gw or run directly via npx mcp-server-and-gw http://localhost:8808/. Configure Claude Desktop by adding an entry to claude_desktop_config.json that calls the gateway with the remote server’s URL. Start your own SSE server on the specified port.

Key features of MCP Gateway, Server, and Client

  • Bridges stdio to HTTP SSE transport for MCP.
  • Includes example server and client implementations.
  • Works with MCP Inspector for testing and debugging.
  • Allows independent SSE server development.

Use cases of MCP Gateway, Server, and Client

  • Connect a remote MCP server to Claude Desktop.
  • Develop and test MCP SSE servers without Claude Desktop.
  • Use MCP Inspector to verify gateway and server interactions.

FAQ from MCP Gateway, Server, and Client

Why do I need this gateway?

Claude Desktop currently only supports stdio transport. This gateway lets you connect to remote SSE-based MCP servers by bridging the two transports.

How do I install and run the gateway?

Install via npm globally or run with npx: npx mcp-server-and-gw http://localhost:8808/. You can also use environment variables MCP_HOST and MCP_PORT.

What are the runtime requirements?

Node.js is required. The gateway script is JavaScript, but your own MCP server can be written in any language.

How do I configure Claude Desktop to use the gateway?

Add an entry to your claude_desktop_config.json with the command npx and arguments ["mcp-server-and-gw", "http://localhost:8808/"]. Ensure npx is in your PATH.

How can I test the gateway and server?

Start the example server on port 8808, then run the gateway with the same URL. You can also use MCP Inspector by running npx @modelcontextprotocol/inspector node ./build/mcp-server-and-gw.js after pointing the inspector at your running server.

评论

其他 分类下的更多 MCP 服务器