Remote MCP Server on Cloudflare
@h13t0ry
关于 Remote MCP Server on Cloudflare
my-mcp-server(without auth)
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"my-mcp-server-h13t0ry": {
"command": "npx",
"args": [
"nx",
"dev",
"remote-mcp-server"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Remote MCP Server on Cloudflare?
Remote MCP Server on Cloudflare is a starter project for deploying a Model Context Protocol (MCP) server to Cloudflare Workers with OAuth login. It is intended for developers who want to run an MCP server remotely and connect to clients such as Claude Desktop.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies, and run npx nx dev remote-mcp-server to start locally. Deploy using npm run deploy after creating a KV namespace for OAuth. Connect clients like the MCP Inspector or Claude Desktop using the SSE endpoint (e.g., http://localhost:8787/sse or a workers.dev URL) via the mcp-remote proxy.
Key features of Remote MCP Server on Cloudflare
- Run MCP server locally with
npx nx dev remote-mcp-server - Deploy to Cloudflare Workers with
npm run deploy - OAuth login implemented using Cloudflare KV
- Connect via SSE transport for remote access
- Works with MCP Inspector and Claude Desktop
Use cases of Remote MCP Server on Cloudflare
- Host a custom MCP server on Cloudflare’s global network
- Test MCP tools locally with the MCP Inspector
- Connect a remote MCP server to Claude Desktop
- Add OAuth-based authentication to an MCP server
FAQ from Remote MCP Server on Cloudflare
How do I connect to the server using the MCP Inspector?
In the inspector, switch Transport Type to SSE and enter the server’s SSE URL (e.g., http://localhost:8787/sse), then click “Connect”. You will be redirected to a login screen.
How do I connect Claude Desktop to my remote server?
Edit the Claude Desktop configuration file and add an entry with "command": "npx", "args": ["mcp-remote", "https://your-worker.workers.dev/sse"]. Restart Claude.
What are the runtime dependencies?
Node.js and npm are required for local development. Deploying requires a Cloudflare account and wrangler CLI. The mcp-remote package is used as a local proxy.
Where are OAuth tokens stored?
OAuth data is stored in a Cloudflare KV namespace named OAUTH_KV. You must create this namespace before deploying.
How can I debug connection issues?
Try restarting Claude or connecting directly using npx mcp-remote http://localhost:8787/sse. In rare cases, clearing ~/.mcp-auth with rm -rf ~/.mcp-auth may help.
云与基础设施 分类下的更多 MCP 服务器
AWS MCP Servers
awslabsOpen source MCP Servers for AWS
Awesome DevOps MCP Servers
rohitg00A curated list of awesome MCP servers focused on DevOps tools and capabilities.
Cloudflare MCP Server
cloudflareMCP Server Kubernetes
Flux159MCP Server for kubernetes management commands
tfmcp: Terraform Model Context Protocol Tool
nwiizo🌍 Terraform Model Context Protocol (MCP) Tool - An experimental CLI tool that enables AI assistants to manage and operate Terraform environments. Supports reading Terraform configurations, analyzing plans, applying configurations, and managing state with Claude Desktop integrati
评论