MCP.so
登录

Remote MCP Server on Cloudflare

@tgmclaughlin

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

tgmclaughlin

配置

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

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

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

A starter project for running a remote MCP (Model Context Protocol) server on Cloudflare Workers, complete with OAuth login. It is intended for developers who want to deploy an MCP server that can be accessed by remote MCP clients like Claude Desktop.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies (npm install), and run locally with npx nx dev remote-mcp-server. Optionally, deploy to Cloudflare using npm run deploy after creating a KV namespace (npx wrangler kv namespace create OAUTH_KV). Connect clients (MCP Inspector or Claude Desktop) using SSE at a /sse endpoint.

Key features of Remote MCP Server on Cloudflare

  • Runs on Cloudflare Workers with OAuth login.
  • Supports local development and remote deployment.
  • Connects via SSE (Server-Sent Events).
  • Works with MCP Inspector and Claude Desktop.
  • Uses npx mcp-remote for local proxy.

Use cases of Remote MCP Server on Cloudflare

  • Deploying a cloud-hosted MCP server with authentication.
  • Connecting Claude Desktop to a remote MCP server over the internet.
  • Testing MCP tools locally with the MCP Inspector.
  • Learning how to set up OAuth for MCP on Cloudflare.

FAQ from Remote MCP Server on Cloudflare

How do I connect Claude Desktop to the remote server?

Update your Claude Desktop configuration (claude_desktop_config.json) to use npx mcp-remote with the Workers URL (e.g., https://worker-name.account-name.workers.dev/sse) as an argument.

What dependencies or runtime are required?

Node.js, npm, and a Cloudflare account for deployment. Local development uses npx nx and wrangler.

Where does authentication data live?

OAuth session data is stored in a Cloudflare KV namespace (OAUTH_KV). Locally, authentication state may be cached in ~/.mcp-auth.

Can I debug connection issues?

Yes. Try restarting Claude, connecting via npx mcp-remote http://localhost:8787/sse directly, or clearing ~/.mcp-auth files if needed.

How do I deploy to production?

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

评论

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