MCP.so
登录

Remote MCP Server on Cloudflare

@langhai8045

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

langhai8045

配置

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

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

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

A guide to get a remote MCP (Model Context Protocol) server running on Cloudflare Workers with OAuth login. It is intended for developers who want to deploy MCP tools to Cloudflare and connect them to clients like Claude Desktop.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies, and run locally with npx nx dev remote-mcp-server. Then connect via the MCP Inspector (using SSE transport) or configure Claude Desktop with a mcp-remote proxy pointing to the local or deployed /sse endpoint. Finally, deploy to Cloudflare using npm run deploy after setting up an OAuth KV namespace.

Key features of Remote MCP Server on Cloudflare

  • Runs on Cloudflare Workers with OAuth login
  • Supports local development and testing
  • Connects to MCP Inspector via SSE transport
  • Integrates with Claude Desktop via mcp-remote proxy
  • Deployable to production with a single command
  • Includes debugging and cache-clearing instructions

Use cases of Remote MCP Server on Cloudflare

  • Develop and test MCP tools locally using the MCP Inspector
  • Deploy a production‑ready remote MCP server on Cloudflare Workers
  • Connect Claude Desktop to a remote MCP server over HTTP
  • Explore and invoke MCP tools with a browser‑based inspector

FAQ from Remote MCP Server on Cloudflare

What transport type does the MCP server use?

The server uses SSE (Server‑Sent Events) as the transport type.

How do I run the server locally?

Clone the repository, run npm install, then execute npx nx dev remote-mcp-server. The server will be available at http://localhost:8787/.

How do I deploy the server to Cloudflare?

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

How do I connect Claude Desktop to the remote server?

Add a mcp-remote entry in Claude’s configuration file pointing to the server’s /sse URL (e.g., https://worker-name.account-name.workers.dev/sse).

How can I debug connection issues?

Try restarting Claude, or connect directly from the command line with npx mcp-remote <url>/sse. If needed, clear cached files with rm -rf ~/.mcp-auth.

评论

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