MCP.so
登录

Remote MCP Server on Cloudflare

@JakePartusch

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

JakePartusch

配置

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

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

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

Remote MCP Server on Cloudflare is a template for deploying a remote Model Context Protocol (MCP) server on Cloudflare Workers with OAuth login. It allows developers to run MCP tools over HTTP and connect clients such as Claude Desktop or the MCP Inspector.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies, and run locally with npx nx dev remote-mcp-server. Deploy to Cloudflare using npm run deploy after creating a KV namespace with npx wrangler kv namespace create OAUTH_KV. Connect clients by pointing them to the server’s /sse endpoint, using the MCP Inspector or by configuring Claude Desktop with the mcp-remote proxy.

Key features of Remote MCP Server on Cloudflare

  • Deploy a remote MCP server on Cloudflare Workers.
  • Built-in OAuth login for secure access.
  • Uses SSE (Server-Sent Events) transport.
  • Supports connection from MCP Inspector and Claude Desktop.
  • Includes a local development workflow with mock login.

Use cases of Remote MCP Server on Cloudflare

  • Run a math tool remotely for use in Claude Desktop.
  • Test MCP tool calls with the MCP Inspector over the internet.
  • Host custom MCP tools accessible from any MCP client.

FAQ from Remote MCP Server on Cloudflare

What runtime and dependencies are required?

Node.js and npm are required for local development. Cloudflare Workers runtime is used for deployment. The package mcp-remote is needed for client-side proxying.

How does OAuth authentication work?

The server includes OAuth login; locally it uses a mock login screen, and after deployment it uses the configured KV store for token management.

How do I connect Claude Desktop to a remote server?

Update Claude Desktop’s configuration file (Settings > Developer > Edit Config) to add an entry that uses npx mcp-remote with the server’s /sse URL as an argument.

Can I debug connection issues?

Use the command npx mcp-remote http://localhost:8787/sse to test connectivity. In rare cases, clearing ~/.mcp-auth may help.

What transport does the server use?

The server uses Server-Sent Events (SSE) as the transport protocol, accessed via the /sse endpoint.

评论

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