MCP.so
登录

Remote MCP Server on Cloudflare

@zzerding

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

zzerding

配置

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

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

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

Remote MCP Server on Cloudflare is a template for deploying a Model Context Protocol (MCP) server on Cloudflare Workers with OAuth login. It lets you run MCP tools remotely and connect clients like Claude Desktop or the MCP Inspector over SSE.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies with npm install, and run locally with npx nx dev remote-mcp-server. Deploy to Cloudflare by creating a KV namespace (npx wrangler kv namespace create OAUTH_KV), adding its ID to wrangler.jsonc, then running npm run deploy. Connect clients using npx mcp-remote <url>/sse or configure Claude Desktop’s config with the mcp-remote command pointing to your server’s SSE endpoint.

Key features of Remote MCP Server on Cloudflare

  • Runs on Cloudflare Workers with OAuth login
  • Uses SSE (Server-Sent Events) transport
  • Local development environment with hot reload
  • Supports connection via MCP Inspector and Claude Desktop
  • Includes a local proxy (mcp-remote) for remote clients

Use cases of Remote MCP Server on Cloudflare

  • Hosting MCP tools as a remote cloud service
  • Connecting Claude Desktop to custom MCP servers behind OAuth
  • Prototyping and testing MCP servers locally before deployment
  • Using the MCP Inspector to explore and call tools remotely

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. The server will be available at http://localhost:8787/.

How do I connect the MCP Inspector to my server?

Start the inspector with npx @modelcontextprotocol/inspector, set Transport Type to SSE, enter http://localhost:8787/sse (or your remote URL), and click Connect. Complete the OAuth login to see and call tools.

How do I connect Claude Desktop to the server?

Edit Claude Desktop’s config file (Settings > Developer > Edit Config) and add an entry with command: "npx", args: ["mcp-remote", "http://localhost:8787/sse"] (or your remote URL). Restart Claude; a browser will open for OAuth login.

How do I deploy to Cloudflare?

Create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add its ID to wrangler.jsonc, then run npm run deploy. The server will be available at your workers.dev URL.

How can I debug connection issues?

Restart Claude or test connectivity with npx mcp-remote http://localhost:8787/sse. In rare cases, clear cached auth data with rm -rf ~/.mcp-auth.

评论

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