MCP.so
登录

mcp-server-proxy

@leizongmin

关于 mcp-server-proxy

Converts MCP protocol's SSE transport layer to a standard HTTP request/response.

基本信息

分类

其他

传输方式

stdio

发布者

leizongmin

配置

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

{
  "mcpServers": {
    "mcp-server-proxy": {
      "command": "node",
      "args": [
        "server.js"
      ]
    }
  }
}

工具

未检测到工具

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

概览

What is mcp-server-proxy?

mcp-server-proxy is a Go proxy server that converts the MCP (Model Context Protocol) SSE transport layer into standard HTTP request/response patterns. It simplifies MCP server development by allowing developers to handle plain HTTP endpoints without needing to implement SSE details.

How to use mcp-server-proxy?

Install with go install github.com/leizongmin/mcp-server-proxy@latest. Use mcp-server-proxy inspect <local_url> <target_url> to inspect traffic between client and server, or mcp-server-proxy serve <local_url> <target_url> to start a proxy that translates SSE to HTTP.

Key features of mcp-server-proxy

  • Converts MCP SSE transport to standard HTTP requests/responses
  • Provides inspect mode to study MCP client-server interactions
  • Supports initialize, tools/list, and tools/call methods
  • Allows MCP server implementation in any programming language

Use cases of mcp-server-proxy

  • Simplify MCP server development without SSE protocol expertise
  • Research MCP client-server interactions via inspect command
  • Build MCP servers with any HTTP framework and language
  • Enable easy MCP client configuration with just a server URL

FAQ from mcp-server-proxy

What does mcp-server-proxy do?

It acts as a proxy that converts MCP's SSE-based communication into standard HTTP requests/responses, allowing developers to implement MCP servers without handling SSE.

How do I install mcp-server-proxy?

Run go install github.com/leizongmin/mcp-server-proxy@latest.

What commands are available?

Two commands: inspect for examining request/response traffic and serve for running the proxy server.

Which MCP methods are supported?

Currently initialize, tools/list, and tools/call.

Does mcp-server-proxy require any runtime dependencies?

It is a standalone Go binary; no runtime

评论

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