Remote MCP Server on Cloudflare
@kentcdodds
Remote MCP Server on Cloudflare について
概要はまだありません
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"cloudflare-remote-mcp-server": {
"command": "npx",
"args": [
"nx",
"dev",
"remote-mcp-server"
]
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Remote MCP Server on Cloudflare?
A reference implementation that deploys a remote MCP server on Cloudflare Workers with OAuth login, enabling secure, remote tool access over SSE.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies, and run npx nx dev remote-mcp-server for local development. Deploy with npm run deploy after configuring a KV namespace for OAuth storage. Connect MCP clients (e.g., MCP Inspector or Claude Desktop) by pointing them to the server’s /sse endpoint.
Key features of Remote MCP Server on Cloudflare
- Deployable to Cloudflare Workers with built-in OAuth login.
- Supports local development and remote client connections via SSE.
- Works with MCP Inspector for testing and debugging tools.
- Integrates with Claude Desktop through a local proxy (
mcp-remote). - Uses Cloudflare KV for OAuth state management.
Use cases of Remote MCP Server on Cloudflare
- Running MCP tools on a serverless edge platform for low-latency access.
- Providing authenticated, remote tool calling to Claude Desktop clients.
- Prototyping and testing MCP servers locally before production deployment.
- Building custom math or utility tools that Claude can invoke remotely.
FAQ from Remote MCP Server on Cloudflare
What dependencies are required to run the server locally?
You need Node.js, npm, and the repository cloned. Run npm install then npx nx dev remote-mcp-server.
How do I deploy the server to Cloudflare?
Run npx wrangler kv namespace create OAUTH_KV to create a KV namespace, add its ID to wrangler.jsonc, then run npm run deploy.
How can I connect Claude Desktop to the server?
Add an entry to Claude Desktop’s config with command: "npx", args: ["mcp-remote", "http://localhost:8787/sse"] for local, or the deployed workers.dev/sse URL for remote.
What transport type does the server use?
It uses SSE (Server-Sent Events) at the /sse endpoint.
How do I debug connection issues?
Restart Claude, or test directly with npx mcp-remote http://localhost:8787/sse. Clearing ~/.mcp-auth may help if OAuth state is stale.
「クラウドとインフラ」の他のコンテンツ
AWS Model Context Protocol (MCP) Server
alexei-ledA lightweight service that enables AI assistants to execute AWS CLI commands (in safe containerized environment) through the Model Context Protocol (MCP). Bridges Claude, Cursor, and other MCP-aware AI tools with AWS CLI for enhanced cloud infrastructure management.
container-use
daggerDevelopment environments for coding agents. Enable multiple agents to work safely and independently with your preferred stack.
Lambda MCP Server Demo (Streamable HTTP)
mikegc-awsCreates a simple MCP tool server with "streaming" HTTP.
aws-finops-mcp-server
ravikiranvmAn MCP (Model Context Protocol) server that brings powerful AWS FinOps capabilities directly into your AI assistant. Analyze cloud costs, audit for waste, and get budget insights using natural language, all while keeping your credentials secure on your local machine.
Terraform MCP Server
hashicorpThe Terraform MCP Server provides seamless integration with Terraform ecosystem, enabling advanced automation and interaction capabilities for Infrastructure as Code (IaC) development.
コメント