Remote MCP Server on Cloudflare
@hufeng03
About Remote MCP Server on Cloudflare
No overview available yet
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"remote-mcp-server-hufeng03": {
"command": "npx",
"args": [
"nx",
"dev",
"remote-mcp-server"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Remote MCP Server on Cloudflare?
A starter project to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It is intended for developers who want to expose MCP tools over the internet and connect them to clients like Claude Desktop.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies with npm install, and run locally via npx nx dev remote-mcp-server. To deploy, create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, and run npm run deploy. Connect clients by pointing them to the server’s /sse endpoint using the MCP Inspector or by configuring Claude Desktop with the mcp-remote proxy command.
Key features of Remote MCP Server on Cloudflare
- Runs as a Cloudflare Worker with OAuth login.
- Uses SSE (Server-Sent Events) transport for MCP.
- Includes a sample math tool ready to call.
- Connects to MCP Inspector, Claude Desktop, and remote clients.
- Stores OAuth data in a Workers KV namespace.
Use cases of Remote MCP Server on Cloudflare
- Deploy a remote MCP server accessible from any MCP client over the internet.
- Prototype and test MCP tools locally before deploying to production.
- Integrate a custom MCP server with Claude Desktop for AI-assisted tool calling.
- Build a secure, OAuth-protected endpoint for MCP tools on Cloudflare’s edge network.
FAQ from Remote MCP Server on Cloudflare
How do I connect Claude Desktop to the server?
Edit Claude Desktop’s config file to add an mcpServers entry that uses npx mcp-remote with the server’s SSE URL (e.g., http://localhost:8787/sse for local, or the workers.dev URL for remote). Restart Claude to see the tools.
What transport does the server use?
The server uses SSE (Server-Sent Events) and is accessed via its /sse endpoint.
How do I debug connection issues?
Restart Claude, or try connecting directly from the command line with npx mcp-remote http://localhost:8787/sse. In rare cases, clear the files in ~/.mcp-auth with rm -rf ~/.mcp-auth.
More Cloud & Infrastructure MCP servers
MCP Server Kubernetes
Flux159MCP Server for kubernetes management commands
Firebase MCP
gannonh🔥 Model Context Protocol (MCP) server for Firebase.
Kubernetes MCP Server
manusaModel Context Protocol (MCP) server for Kubernetes and OpenShift
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.
Lambda MCP Server Demo (Streamable HTTP)
mikegc-awsCreates a simple MCP tool server with "streaming" HTTP.
Comments