Skip to content

tomeai/mcp-gateway

Repository files navigation

MCP-Gateway

Online

  1. streamable http
{
  "mcpServers": {
    "fetch": {
      "type": "streamable_http",
      "url": "https://registry.wemcp.cn/mcp/{mcp_server_name}"
    }
  }
}
  1. sse
{
  "mcpServers": {
    "amap-maps": {
      "type": "sse",
      "url": "https://registry.wemcp.cn/http/{mcp_server_name}"
    }
  }
}

Remote

  1. streamable http
{
  "mcpServers": {
    "mcpjungle": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://registry.wemcp.cn/mcp/{mcp_server_name}",
        "--allow-http"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}
  1. sse
{
  "mcpServers": {
    "mcpjungle": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://registry.wemcp.cn/mcp/{mcp_server_name}/sse",
        "--allow-http"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}