MCP.so
登录

Remote MCP Server on Cloudflare

@ajot

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

ajot

配置

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

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

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

Remote MCP Server on Cloudflare lets you deploy a Model Context Protocol (MCP) server on Cloudflare Workers with OAuth login. It is for developers who want a remotely accessible, authenticated MCP server that AI clients like Claude Desktop can connect to 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 with npm run deploy after creating an OAUTH_KV namespace in Cloudflare. Connect clients (MCP Inspector, Claude Desktop) using the SSE endpoint (e.g., http://localhost:8787/sse or your workers.dev URL).

Key features of Remote MCP Server on Cloudflare

  • OAuth-based login for secure access
  • Runs on Cloudflare Workers for global, serverless deployment
  • Uses SSE (Server-Sent Events) transport
  • Supports MCP Inspector for testing and debugging
  • Integrates with Claude Desktop via the mcp-remote proxy

Use cases of Remote MCP Server on Cloudflare

  • Host a remote MCP server accessible from anywhere
  • Add OAuth authentication to MCP tool calls
  • Connect Claude Desktop to a cloud‑deployed MCP server
  • Develop and test MCP tools locally before deploying
  • Securely expose MCP endpoints without managing infrastructure

FAQ from Remote MCP Server on Cloudflare

What do I need to run the server locally?

You need Node.js, npm, and the repository cloned. Run npm install then npx nx dev remote-mcp-server. The server will be available at http://localhost:8787/.

How do I deploy to Cloudflare?

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

How do I connect Claude Desktop to the remote server?

Edit Claude Desktop’s config file and add an mcpServers entry with the command set to npx and args to ["mcp-remote", "https://your-worker.your-account.workers.dev/sse"].

How can I debug connection issues?

Restart Claude, or test the connection directly via npx mcp-remote http://localhost:8787/sse. In rare cases, clear stored auth data by deleting ~/.mcp-auth.

Does the server use authentication?

Yes, the server includes an OAuth login flow. When connecting via MCP Inspector or Claude Desktop, you will be redirected to a login screen.

评论

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