MCP.so
ログイン

Remote MCP Server on Cloudflare

@hufeng03

Remote MCP Server on Cloudflare について

概要はまだありません

基本情報

カテゴリ

クラウドとインフラ

ランタイム

node

トランスポート

stdio

公開者

hufeng03

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

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

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Remote MCP Server on Cloudflare?

A starter project to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It is intended for developers who want to expose MCP tools over the internet and connect them to clients like Claude Desktop.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies with npm install, and run locally via npx nx dev remote-mcp-server. To deploy, create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, and run npm run deploy. 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 command.

Key features of Remote MCP Server on Cloudflare

  • Runs as a Cloudflare Worker with OAuth login.
  • Uses SSE (Server-Sent Events) transport for MCP.
  • Includes a sample math tool ready to call.
  • Connects to MCP Inspector, Claude Desktop, and remote clients.
  • Stores OAuth data in a Workers KV namespace.

Use cases of Remote MCP Server on Cloudflare

  • Deploy a remote MCP server accessible from any MCP client over the internet.
  • Prototype and test MCP tools locally before deploying to production.
  • Integrate a custom MCP server with Claude Desktop for AI-assisted tool calling.
  • Build a secure, OAuth-protected endpoint for MCP tools on Cloudflare’s edge network.

FAQ from Remote MCP Server on Cloudflare

How do I connect Claude Desktop to the server?

Edit Claude Desktop’s config file to add an mcpServers entry that uses npx mcp-remote with the server’s SSE URL (e.g., http://localhost:8787/sse for local, or the workers.dev URL for remote). Restart Claude to see the tools.

What transport does the server use?

The server uses SSE (Server-Sent Events) and is accessed via its /sse endpoint.

How do I debug connection issues?

Restart Claude, or try connecting directly from the command line with npx mcp-remote http://localhost:8787/sse. In rare cases, clear the files in ~/.mcp-auth with rm -rf ~/.mcp-auth.

コメント

「クラウドとインフラ」の他のコンテンツ