MCP.so
ログイン

Remote MCP Server on Cloudflare

@artiveloper

Remote MCP Server on Cloudflare について

概要はまだありません

基本情報

カテゴリ

開発者ツール

ランタイム

node

トランスポート

stdio

公開者

artiveloper

設定

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

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

ツール

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

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

概要

What is Remote MCP Server on Cloudflare?

A template and guide for deploying a remote MCP (Model Context Protocol) server on Cloudflare Workers, complete with OAuth login. It is intended for developers who want to host MCP servers that can be accessed by remote clients like Claude Desktop and 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. To connect clients, use the MCP Inspector with SSE transport on http://localhost:8787/sse, or configure Claude Desktop by adding an mcp-remote proxy in its settings JSON. Deploy to Cloudflare by creating an OAUTH_KV namespace with npx wrangler kv namespace create OAUTH_KV, adding the ID to wrangler.jsonc, then running npm run deploy.

Key features of Remote MCP Server on Cloudflare

  • Runs on Cloudflare Workers with full OAuth login
  • Supports SSE (Server-Sent Events) transport
  • Works with MCP Inspector for local testing
  • Connects to Claude Desktop via a local proxy
  • Deployable to a public workers.dev URL
  • Uses KV namespace for OAuth state management

Use cases of Remote MCP Server on Cloudflare

  • Host a math tool server that Claude can call remotely
  • Develop and test MCP tools locally before deploying
  • Connect any MCP-compatible client to a Cloudflare-hosted server
  • Add OAuth‑protected MCP endpoints for secure AI agent integration

FAQ from Remote MCP Server on Cloudflare

How do I run the server locally?

Clone the repo, install dependencies, and run npx nx dev remote-mcp-server. The server will be available at http://localhost:8787/.

How do I connect the MCP Inspector to my server?

Start the inspector with npx @modelcontextprotocol/inspector, switch transport type to SSE, and enter http://localhost:8787/sse as the server URL. A mock login screen appears; any email/password works locally.

How do I connect Claude Desktop to my remote deployed server?

Update Claude’s configuration JSON to use the mcp-remote command with your workers.dev URL appended with /sse. For example: "args": ["mcp-remote", "https://worker-name.account-name.workers.dev/sse"].

How do I deploy the server to Cloudflare?

Run npx wrangler kv namespace create OAUTH_KV, add the returned namespace ID to wrangler.jsonc, then execute npm run deploy. Your server will be live at a workers.dev URL.

What should I do if something goes wrong?

Restart Claude, try connecting directly with npx mcp-remote http://localhost:8787/sse, or clear cached auth data with rm -rf ~/.mcp-auth.

コメント

「開発者ツール」の他のコンテンツ