Remote MCP Server on Cloudflare
@JakePartusch
Remote MCP Server on Cloudflare について
概要はまだありません
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"remote-mcp-server-2-jakepartusch": {
"command": "npx",
"args": [
"nx",
"dev",
"remote-mcp-server"
]
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Remote MCP Server on Cloudflare?
Remote MCP Server on Cloudflare is a template for deploying a remote Model Context Protocol (MCP) server on Cloudflare Workers with OAuth login. It allows developers to run MCP tools over HTTP and connect 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. Deploy to Cloudflare using npm run deploy after creating a KV namespace with npx wrangler kv namespace create OAUTH_KV. 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.
Key features of Remote MCP Server on Cloudflare
- Deploy a remote MCP server on Cloudflare Workers.
- Built-in OAuth login for secure access.
- Uses SSE (Server-Sent Events) transport.
- Supports connection from MCP Inspector and Claude Desktop.
- Includes a local development workflow with mock login.
Use cases of Remote MCP Server on Cloudflare
- Run a math tool remotely for use in Claude Desktop.
- Test MCP tool calls with the MCP Inspector over the internet.
- Host custom MCP tools accessible from any MCP client.
FAQ from Remote MCP Server on Cloudflare
What runtime and dependencies are required?
Node.js and npm are required for local development. Cloudflare Workers runtime is used for deployment. The package mcp-remote is needed for client-side proxying.
How does OAuth authentication work?
The server includes OAuth login; locally it uses a mock login screen, and after deployment it uses the configured KV store for token management.
How do I connect Claude Desktop to a remote server?
Update Claude Desktop’s configuration file (Settings > Developer > Edit Config) to add an entry that uses npx mcp-remote with the server’s /sse URL as an argument.
Can I debug connection issues?
Use the command npx mcp-remote http://localhost:8787/sse to test connectivity. In rare cases, clearing ~/.mcp-auth may help.
What transport does the server use?
The server uses Server-Sent Events (SSE) as the transport protocol, accessed via the /sse endpoint.
「クラウドとインフラ」の他のコンテンツ
Supabase MCP Server
coleam00Supabase MCP server created in Python.
Cloudflare MCP Server
cloudflareGCP MCP
eniayomiA Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with your Google Cloud Platform environment. This allows for natural language querying and management of your GCP resources during conversations.
Lambda MCP Server Demo (Streamable HTTP)
mikegc-awsCreates a simple MCP tool server with "streaming" HTTP.
Sample Serverless MCP Servers
aws-samplesSample implementations of AI Agents and MCP Servers running on AWS Serverless compute
コメント