MCP.so
登录

Remote MCP Server on Cloudflare

@jalexspringer

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

jalexspringer

配置

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

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

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

A template to set up a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It enables developers to run authenticated MCP tools that can be accessed from any MCP client.

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 to Cloudflare using npx wrangler kv namespace create OAUTH_KV, update wrangler.jsonc, then npm run deploy. Connect clients like the MCP Inspector or Claude Desktop by pointing them to the SSE endpoint (e.g., https://worker-name.workers.dev/sse).

Key features of Remote MCP Server on Cloudflare

  • Deploy a remote MCP server to Cloudflare Workers.
  • Built-in OAuth login for authentication.
  • Works with SSE transport for remote clients.
  • Compatible with MCP Inspector and Claude Desktop.
  • Local development with live reload via Nx.

Use cases of Remote MCP Server on Cloudflare

  • Run a custom MCP tool server accessible from anywhere.
  • Integrate MCP tools with Claude Desktop via a remote proxy.
  • Test and debug MCP tools locally before deploying to production.
  • Provide authenticated MCP services to multiple clients.

FAQ from Remote MCP Server on Cloudflare

What exactly does this template provide?

It provides a fully working remote MCP server on Cloudflare Workers, complete with OAuth login, ready to be extended with custom tools.

What dependencies are required to use it?

You need Node.js, npm, and the Cloudflare Workers CLI (wrangler). A Cloudflare account is needed for deployment.

How do I connect Claude Desktop to the remote server?

Add an mcpServers entry in Claude's config using mcp-remote as the command pointing to your server’s SSE URL (e.g., https://worker-name.workers.dev/sse).

How can I debug connectivity issues?

Try restarting Claude, or test directly with npx mcp-remote http://localhost:8787/sse. If needed, clear the auth cache with rm -rf ~/.mcp-auth.

Does the server support transport other than SSE?

The README only demonstrates SSE transport for remote access. No other transports (e.g., stdio) are mentioned for the deployed server.

评论

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