Remote MCP Server on Cloudflare
@jcrabapple
关于 Remote MCP Server on Cloudflare
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"remote-mcp-server-jcrabapple": {
"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 kit that lets you run an MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It is intended for developers who want to host MCP tools accessible over the internet and connect them to clients like Claude Desktop.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies, and run locally with npx nx dev remote-mcp-server. To deploy to Cloudflare, create an KV namespace with npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, and run npm run deploy. Connect to the server using the MCP Inspector (npx @modelcontextprotocol/inspector) with SSE transport at the server’s /sse URL, or configure Claude Desktop with an mcp-remote proxy pointing to the same endpoint.
Key features of Remote MCP Server on Cloudflare
- OAuth login built into the server.
- Local development with hot reload.
- Deploy to Cloudflare Workers with a single command.
- Supports SSE (Server-Sent Events) transport.
- Works with MCP Inspector for exploration.
- Integrates with Claude Desktop via
mcp-remoteproxy.
Use cases of Remote MCP Server on Cloudflare
- Hosting MCP tools on a scalable serverless platform.
- Connecting Claude Desktop to remote MCP tools over the internet.
- Testing and debugging MCP tools locally before deployment.
- Building and experimenting with custom MCP servers that require authentication.
FAQ from Remote MCP Server on Cloudflare
How do I connect the MCP Inspector to my server?
Run npx @modelcontextprotocol/inspector, switch Transport Type to SSE, and enter the server’s SSE URL (e.g., http://localhost:8787/sse). Click “Connect” and log in with any email and password.
How do I connect Claude Desktop to a remote MCP server?
Edit the Claude Desktop configuration file (mcpServers section) to use the mcp-remote command with the server’s SSE URL. For example: "command": "npx", "args": ["mcp-remote", "https://worker-name.account-name.workers.dev/sse"].
How do I deploy the server to Cloudflare?
Create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, and run npm run deploy. The server will be available at a workers.dev URL.
What transport protocol does the server use?
The server uses SSE (Server-Sent Events) for communication. Clients connect to the /sse endpoint.
How can I debug connection issues?
Restart Claude, or test the connection directly with npx mcp-remote http://localhost:8787/sse. In rare cases, clear the authentication files with rm -rf ~/.mcp-auth.
云与基础设施 分类下的更多 MCP 服务器
Azure DevOps MCP Server
Tiberriver256An MCP server for Azure DevOps
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.
Kubernetes MCP Server
reza-gholizadeManage Your Kubernetes Cluster with k8s mcp-server
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.
container-use
aluzzardiDevelopment environments for coding agents. Enable multiple agents to work safely and independently with your preferred stack.
评论