MCP.so
登录

Remote MCP Server on Cloudflare

@mehmet-arikan

关于 Remote MCP Server on Cloudflare

暂无概览

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

mehmet-arikan

配置

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

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

工具

未检测到工具

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

概览

What is Remote MCP Server on Cloudflare?

Remote MCP Server on Cloudflare is a project to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers, complete with OAuth login. It provides a ready‑to‑use setup for developers who want to run MCP servers in the cloud and connect them to 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. For production, create a Cloudflare KV namespace (npx wrangler kv namespace create OAUTH_KV), add its ID to wrangler.jsonc, and deploy with npm run deploy. Connect via the MCP Inspector using SSE transport, or via Claude Desktop by adding an entry to the config file that invokes npx mcp-remote pointing to your server’s /sse endpoint.

Key features of Remote MCP Server on Cloudflare

  • OAuth‑protected MCP server on Cloudflare Workers
  • Local development with live reload
  • Deploy to Cloudflare’s edge network
  • SSE transport for MCP clients
  • MCP Inspector integration for testing
  • Claude Desktop integration via a local proxy

Use cases of Remote MCP Server on Cloudflare

  • Run a remote MCP server accessible from anywhere
  • Securely expose MCP tools behind OAuth login
  • Integrate with Claude Desktop for AI‑powered tool calling
  • Prototype and debug MCP servers using the official Inspector

FAQ from Remote MCP Server on Cloudflare

What authentication does the server use?

The server uses OAuth with a mock login screen during local development. In the MCP Inspector you enter any email and password to authenticate.

What is the OAUTH_KV namespace for?

It is a Cloudflare KV namespace that stores OAuth session data. You must create it with wrangler kv namespace create OAUTH_KV and add the resulting ID to wrangler.jsonc before deploying.

How do I connect Claude Desktop to the remote server?

Update your Claude Desktop configuration file (found under Settings > Developer > Edit Config) to include an entry that runs npx mcp-remote with your server’s workers.dev URL appended with /sse.

What transport does the server use?

It uses Server‑Sent Events (SSE) as the transport protocol. The MCP Inspector and Claude proxy connect to the /sse endpoint.

How can I debug connection issues?

Use npx mcp-remote http://localhost:8787/sse on the command line to test directly. Restart Claude, or clear the files in ~/.mcp-auth if needed.

评论

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