MCP.so
登录

Remote MCP Server on Cloudflare

@matthewgoodman13

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

matthewgoodman13

配置

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

{
  "mcpServers": {
    "remote-mcp-server-matthewgoodman13": {
      "command": "npx",
      "args": [
        "nx",
        "dev",
        "remote-mcp-server"
      ]
    }
  }
}

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

A starter project to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It is intended for developers who want to run MCP tools remotely and connect them to clients like Claude Desktop.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies with npm install, run locally with npx nx dev remote-mcp-server, and deploy to Cloudflare using npm run deploy. To connect a client, use SSE transport at the /sse endpoint (e.g. http://localhost:8787/sse locally or https://worker-name.account-name.workers.dev/sse after deployment).

Key features of Remote MCP Server on Cloudflare

  • Remote MCP server hosted on Cloudflare Workers
  • OAuth login for secure access
  • SSE (Server‑Sent Events) transport
  • Local development and debugging support
  • Easy deployment with npx wrangler and npm run deploy
  • Integration with MCP Inspector and Claude Desktop

Use cases of Remote MCP Server on Cloudflare

  • Develop and test MCP tools locally before deploying
  • Host a remote MCP server for use with AI clients like Claude Desktop
  • Authenticate users via OAuth when accessing the MCP server
  • Debug MCP tool calls using the MCP Inspector

FAQ from Remote MCP Server on Cloudflare

How do I run the server locally?

Clone the repo, run npm install, then npx nx dev remote-mcp-server. Open http://localhost:8787/ in a browser.

How do I deploy to Cloudflare?

Create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, then run npm run deploy.

How do I connect Claude Desktop to the server?

Add an entry to your Claude Desktop config file with "command": "npx", "args": ["mcp-remote", "<URL>/sse"]. Use the local http://localhost:8787/sse or the deployed https://worker-name.account-name.workers.dev/sse.

What transport type does the server use?

The server uses SSE (Server‑Sent Events) transport. In the MCP Inspector, set Transport Type to SSE and enter the server’s /sse URL.

How do I debug connection issues?

Restart Claude, or test the connection directly with npx mcp-remote http://localhost:8787/sse. If needed, clear cached data with rm -rf ~/.mcp-auth.

评论

云与基础设施 分类下的更多 MCP 服务器