Remote MCP Server on Cloudflare
@bjacobso
Remote MCP Server on Cloudflare について
概要はまだありません
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"remote-mcp-server-bjacobso": {
"command": "npx",
"args": [
"nx",
"dev",
"remote-mcp-server"
]
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Remote MCP Server on Cloudflare?
A setup to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It is intended for developers who want to host MCP tools that can be accessed remotely by MCP clients like Claude Desktop.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies, and run npx nx dev remote-mcp-server for local development. Use the MCP Inspector with SSE transport at http://localhost:8787/sse to test tools. For deployment, 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. Connect Claude Desktop by updating its configuration to point to the local or remote SSE endpoint using npx mcp-remote.
Key features of Remote MCP Server on Cloudflare
- Runs on Cloudflare Workers for global deployment.
- Built-in OAuth login for secure access.
- Supports SSE (Server-Sent Events) transport.
- Integrates with Claude Desktop via a local proxy (
mcp-remote). - MCP Inspector for local development and testing.
- Simple deployment commands using Wrangler and KV storage.
Use cases of Remote MCP Server on Cloudflare
- Hosting custom MCP tools (e.g., a math tool) for use by MCP clients.
- Connecting Claude Desktop to a remote MCP server over the internet.
- Prototyping and testing MCP servers locally with a mock login.
- Deploying secure, OAuth-protected MCP endpoints on Cloudflare’s edge.
FAQ from Remote MCP Server on Cloudflare
How do I connect to the MCP server using the Inspector?
Start the Inspector with npx @modelcontextprotocol/inspector, switch Transport Type to SSE, and enter the server’s SSE URL (e.g., http://localhost:8787/sse). After logging in, you can list and call tools.
How do I connect Claude Desktop to the local MCP server?
Add the server to Claude’s config file with command: "npx", args: ["mcp-remote", "http://localhost:8787/sse"]. A browser window will open for login, and tools will appear in Claude.
How do I deploy the MCP server to Cloudflare Workers?
First create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add its ID to wrangler.jsonc, then run npm run deploy. The server will be available at a workers.dev URL.
How can I debug connection issues?
Restart Claude, or test the server directly with npx mcp-remote http://localhost:8787/sse. In rare cases, clear cached auth files with rm -rf ~/.mcp-auth.
What transport does the server use?
The server uses SSE (Server-Sent Events) as the transport protocol for MCP communication.
「クラウドとインフラ」の他のコンテンツ
GCP 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.
AWS MCP
RafalWilinskiTalk with your AWS using Claude. Model Context Protocol (MCP) server for AWS. Better Amazon Q alternative.
Sample Serverless MCP Servers
aws-samplesSample implementations of AI Agents and MCP Servers running on AWS Serverless compute
Run Model Context Protocol (MCP) servers with AWS Lambda
awslabsRun existing Model Context Protocol (MCP) stdio-based servers in AWS Lambda functions
MCP Gateway
mcp-ecosystem🧩 MCP Gateway - A lightweight gateway service that instantly transforms existing MCP Servers and APIs into MCP servers with zero code changes. Features Docker deployment and management UI, requiring no infrastructure modifications.
コメント