MCP.so
登录

Remote MCP Server on Cloudflare

@everbove

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

开发工具

运行时

node

传输方式

stdio

发布者

everbove

配置

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

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

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

A remote MCP (Model Context Protocol) server that runs on Cloudflare Workers with OAuth login. It allows MCP clients, such as Claude Desktop, to connect to a server deployed on Cloudflare’s edge network via SSE transport.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies with npm install, and run locally using npx nx dev remote-mcp-server. Test with the MCP Inspector by connecting to http://localhost:8787/sse. Deploy to Cloudflare by creating a KV namespace with npx wrangler kv namespace create OAUTH_KV, adding the namespace ID to wrangler.jsonc, and running npm run deploy.

Key features of Remote MCP Server on Cloudflare

  • Remote MCP server hosted on Cloudflare Workers
  • Built-in OAuth login flow
  • Supports SSE transport at the /sse endpoint
  • Local development with MCP Inspector
  • Easy integration with Claude Desktop via mcp-remote proxy
  • KV storage for OAuth data

Use cases of Remote MCP Server on Cloudflare

  • Run an MCP server on the edge with Cloudflare Workers
  • Connect Claude Desktop to a remote MCP server securely
  • Develop and test MCP tools locally using the MCP Inspector
  • Deploy a production-ready remote MCP server with minimal configuration

FAQ from Remote MCP Server on Cloudflare

What are the runtime requirements?

Node.js and npm are required for local development. A Cloudflare account and Wrangler CLI are needed for deployment.

How do I deploy the server to Cloudflare?

Run npx wrangler kv namespace create OAUTH_KV, add the KV namespace ID to wrangler.jsonc, then execute npm run deploy.

How can I connect Claude Desktop to the server?

Update Claude's configuration to use npx mcp-remote with the server’s SSE URL (e.g., https://worker-name.account-name.workers.dev/sse). Restart Claude to see the available tools.

What transport protocol does the server use?

It uses Server-Sent Events (SSE) over HTTP, with the endpoint at /sse.

Where does OAuth authentication data persist?

Authentication state is stored in a local ~/.mcp-auth directory. Clearing it with rm -rf ~/.mcp-auth can resolve some login issues.

评论

开发工具 分类下的更多 MCP 服务器