Remote MCP Server on Cloudflare
@benjaminhdd
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-benjaminhdd": {
"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, complete with OAuth login for authentication. It is intended for developers who want to run an MCP server remotely using Cloudflare's infrastructure.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies with npm install, and run locally with npx nx dev remote-mcp-server. For production, create a KV namespace with npx wrangler kv namespace create OAUTH_KV, update wrangler.jsonc, and deploy with npm run deploy. Connect clients like the MCP Inspector or Claude Desktop by pointing them to the server's SSE endpoint (e.g., http://localhost:8787/sse locally or a workers.dev URL remotely).
Key features of Remote MCP Server on Cloudflare
- Deployed as a Cloudflare Worker.
- OAuth-based login for authentication.
- Communicates via SSE (Server-Sent Events) transport.
- Supports the MCP Inspector for testing.
- Works with Claude Desktop via the
mcp-remoteproxy. - Includes local development workflow with
nx.
Use cases of Remote MCP Server on Cloudflare
- Running a remote MCP server accessible from any MCP client.
- Prototyping and testing MCP tools locally before deploying.
- Connecting Claude Desktop to a cloud-hosted MCP server.
- Demonstrating OAuth integration with an MCP endpoint.
FAQ from Remote MCP Server on Cloudflare
How do I develop the server locally?
Clone the repo, run npm install in the ai directory, then use npx nx dev remote-mcp-server. The server will be available at http://localhost:8787/.
How can I test my MCP tools?
Use the MCP Inspector: run npx @modelcontextprotocol/inspector, set Transport Type to SSE, enter http://localhost:8787/sse (or the remote Workers URL) as the server URL, and connect. After logging in with any email/password (on local), you can list and call tools.
How do I connect Claude Desktop to the server?
Edit Claude Desktop's config file and add an mcpServers entry with command: "npx" and args: ["mcp-remote", "http://localhost:8787/sse"] (or the remote Workers URL). Restart Claude Desktop—a browser login window will appear, and tools will be available.
What do I need to deploy to Cloudflare?
You must create a KV namespace (npx wrangler kv namespace create OAUTH_KV), add its ID to wrangler.jsonc, and then run npm run deploy. No other infrastructure is mentioned.
How can I debug connection issues?
Restart Claude Desktop, or test the MCP server directly from the command line with npx mcp-remote http://localhost:8787/sse. As a last resort, clear stored auth files with rm -rf ~/.mcp-auth.
More Cloud & Infrastructure MCP servers
container-use
aluzzardiDevelopment environments for coding agents. Enable multiple agents to work safely and independently with your preferred stack.
K8s MCP Server
alexei-ledK8s-mcp-server is a Model Context Protocol (MCP) server that enables AI assistants like Claude to securely execute Kubernetes commands. It provides a bridge between language models and essential Kubernetes CLI tools including kubectl, helm, istioctl, and argocd, allowing AI syste
MCP Server that interacts with Azure AI Foundry (experimental)
azure-ai-foundryA MCP Server for Azure AI Foundry: it's now moved to cloud, check the new Foundry MCP Server
MCP Server Kubernetes
Flux159MCP Server for kubernetes management commands
Query | MCP server for Supabase
alexander-zuevQuery MCP enables end-to-end management of Supabase via chat interface: read & write query executions, management API support, automatic migration versioning, access to logs and much more.
Comments