MCP.so
登录

Remote MCP Server on Cloudflare

@bjacobso

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

bjacobso

配置

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

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

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

A setup to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It is intended for developers who want to host MCP tools that can be accessed remotely by MCP clients like Claude Desktop.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies, and run npx nx dev remote-mcp-server for local development. Use the MCP Inspector with SSE transport at http://localhost:8787/sse to test tools. For deployment, create an OAUTH_KV namespace with npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, then run npm run deploy. Connect Claude Desktop by updating its configuration to point to the local or remote SSE endpoint using npx mcp-remote.

Key features of Remote MCP Server on Cloudflare

  • Runs on Cloudflare Workers for global deployment.
  • Built-in OAuth login for secure access.
  • Supports SSE (Server-Sent Events) transport.
  • Integrates with Claude Desktop via a local proxy (mcp-remote).
  • MCP Inspector for local development and testing.
  • Simple deployment commands using Wrangler and KV storage.

Use cases of Remote MCP Server on Cloudflare

  • Hosting custom MCP tools (e.g., a math tool) for use by MCP clients.
  • Connecting Claude Desktop to a remote MCP server over the internet.
  • Prototyping and testing MCP servers locally with a mock login.
  • Deploying secure, OAuth-protected MCP endpoints on Cloudflare’s edge.

FAQ from Remote MCP Server on Cloudflare

How do I connect to the MCP server using the Inspector?

Start the Inspector with npx @modelcontextprotocol/inspector, switch Transport Type to SSE, and enter the server’s SSE URL (e.g., http://localhost:8787/sse). After logging in, you can list and call tools.

How do I connect Claude Desktop to the local MCP server?

Add the server to Claude’s config file with command: "npx", args: ["mcp-remote", "http://localhost:8787/sse"]. A browser window will open for login, and tools will appear in Claude.

How do I deploy the MCP server to Cloudflare Workers?

First 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 a workers.dev URL.

How can I debug connection issues?

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

What transport does the server use?

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

评论

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