MCP.so
ログイン

Remote MCP Server on Cloudflare

@Workman

Remote MCP Server on Cloudflare について

概要はまだありません

基本情報

カテゴリ

クラウドとインフラ

ランタイム

node

トランスポート

stdio

公開者

Workman

設定

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

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

ツール

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

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

概要

What is Remote MCP Server on Cloudflare?

A template for deploying a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It provides a fully functional MCP server that can be accessed remotely by MCP clients such as Claude Desktop.

How to use Remote MCP Server on Cloudflare?

Clone the repository, install dependencies, and run locally with npx nx dev remote-mcp-server. Connect using the MCP Inspector with SSE transport, then deploy to Cloudflare Workers using npm run deploy. Configure Claude Desktop by pointing its configuration to the local or remote SSE endpoint via the mcp-remote proxy command.

Key features of Remote MCP Server on Cloudflare

  • Runs on Cloudflare Workers with OAuth authentication
  • Uses SSE (Server-Sent Events) transport
  • Supports local development and remote deployment
  • Includes OAuth login screen for secure access
  • Compatible with MCP Inspector and Claude Desktop
  • Easy deployment with npm run deploy

Use cases of Remote MCP Server on Cloudflare

  • Running an MCP server accessible from anywhere via a URL
  • Providing custom tools to Claude Desktop over a remote connection
  • Developing and testing MCP tools locally before deployment
  • Securing MCP server access with OAuth login

FAQ from Remote MCP Server on Cloudflare

How do I run this MCP 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 Claude Desktop to this server?

Add an entry to Claude Desktop's config file pointing to the SSE URL using the mcp-remote command, such as npx mcp-remote http://localhost:8787/sse for local or a workers.dev URL for remote.

How do I deploy to Cloudflare?

Create an OAuth KV namespace with npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, then run npm run deploy.

What transport does this server use?

The server uses SSE (Server-Sent Events) as its transport protocol.

Where does OAuth state data live?

OAuth state is stored in a Cloudflare KV namespace called OAUTH_KV. Local credentials can be cleared by deleting the ~/.mcp-auth directory.

コメント

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