Remote MCP Server on Cloudflare
@tomtev
关于 Remote MCP Server on Cloudflare
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"remote-mcp-server-tomtev": {
"command": "npx",
"args": [
"nx",
"dev",
"remote-mcp-server"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Remote MCP Server on Cloudflare?
A template for hosting a remote MCP (Model Context Protocol) server on Cloudflare Workers, complete with OAuth login. It is intended for developers who want to run MCP tools on a serverless platform and connect them to AI 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. Deploy by creating a KV namespace with npx wrangler kv namespace create OAUTH_KV, adding the namespace ID to wrangler.jsonc, and running npm run deploy. Connect clients (MCP Inspector or Claude Desktop) via SSE at the server’s /sse endpoint.
Key features of Remote MCP Server on Cloudflare
- Remote MCP server running on Cloudflare Workers
- OAuth login flow built in
- SSE (Server‑Sent Events) transport
- Local development with MCP Inspector support
- Direct integration with Claude Desktop via
mcp-remoteproxy
Use cases of Remote MCP Server on Cloudflare
- Deploying MCP tools on a serverless edge network
- Remotely calling MCP tools from AI assistants like Claude
- Prototyping and testing MCP servers locally before deploying
FAQ from Remote MCP Server on Cloudflare
How do I run the server locally?
Clone the repo, run npx nx dev remote-mcp-server in the ai directory, then open http://localhost:8787/ in a browser.
How do I connect the MCP Inspector to my local server?
Start the inspector with npx @modelcontextprotocol/inspector, set Transport Type to SSE and URL to http://localhost:8787/sse, then click “Connect”. You will be prompted to log in (any email/password works in the mock flow).
How do I deploy the server to Cloudflare?
Create a KV namespace with npx wrangler kv namespace create OAUTH_KV, paste the returned ID into your wrangler.jsonc file, then run npm run deploy.
How do I connect Claude Desktop to a remote instance?
Update your Claude Desktop config file to use the mcp-remote command and point it to your workers.dev URL (e.g., https://worker-name.account-name.workers.dev/sse). Restart Claude; a browser window will open for login.
How can I debug connection issues?
Try connecting directly from the command line with npx mcp-remote http://localhost:8787/sse. In rare cases, clearing the ~/.mcp-auth folder can resolve authentication problems. Restarting Claude may also help.
云与基础设施 分类下的更多 MCP 服务器
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.
MCP Server Kubernetes
Flux159MCP Server for kubernetes management commands
Sample Serverless MCP Servers
aws-samplesSample implementations of AI Agents and MCP Servers running on AWS Serverless compute
Mcp K8s Go
strowkMCP server connecting to Kubernetes
🐳 docker-mcp
QuantGeekDevA docker MCP Server (modelcontextprotocol)
评论