MCP.so
登录

Remote MCP Server on Cloudflare

@peanut996

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

peanut996

配置

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

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

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

A guide and example repository for deploying a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It is intended for developers who want to host MCP tools on Cloudflare’s edge network and connect clients like the MCP Inspector or Claude Desktop.

How to use Remote MCP Server on Cloudflare?

Clone the cloudflare/ai repo, install dependencies with npm install, and run npx nx dev remote-mcp-server for local development. Deploy with npx wrangler kv namespace create OAUTH_KV, add the KV namespace ID to wrangler.jsonc, then npm run deploy. Connect clients over SSE by pointing them to the server’s /sse endpoint.

Key features of Remote MCP Server on Cloudflare

  • Run MCP servers on Cloudflare Workers with OAuth authentication.
  • Develop locally with live reload via npx nx dev.
  • Test tools with the MCP Inspector over SSE.
  • Connect Claude Desktop through the mcp-remote proxy.
  • Deploy to a public workers.dev URL.
  • Example math tool (add) included in the repository.

Use cases of Remote MCP Server on Cloudflare

  • Hosting remote MCP tools for AI assistants like Claude.
  • Prototyping custom MCP servers with OAuth login.
  • Demonstrating remote MCP client-server connections.
  • Building and testing MCP endpoints before production deployment.

FAQ from Remote MCP Server on Cloudflare

What transport protocol does the server use?

The server uses SSE (Server-Sent Events) as the transport protocol.

How do I connect Claude Desktop to the server?

Add an entry to Claude’s configuration file that uses npx mcp-remote pointing to the server’s /sse URL, for example: https://worker-name.account-name.workers.dev/sse.

What are the dependencies for local development?

You need Node.js, npm, and the wrangler CLI installed. Clone the cloudflare/ai repository and run npm install.

How do I deploy the server to Cloudflare?

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

How can I debug connection issues?

Restart Claude or test the connection directly with npx mcp-remote http://localhost:8787/sse. In some cases, clearing ~/.mcp-auth may help.

评论

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