Remote MCP Server on Cloudflare
@famadeuser
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-famadeuser": {
"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 guide and starter code to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. Designed for developers who want to expose MCP tools over the internet and connect them to AI clients such as 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. Connect via MCP Inspector using SSE at http://localhost:8787/sse. For production, create a KV namespace, update wrangler.jsonc, and deploy with npm run deploy. Configure any MCP client (e.g., Claude Desktop) to point to the deployed /sse endpoint using the mcp-remote proxy.
Key features of Remote MCP Server on Cloudflare
- Runs on Cloudflare Workers at the edge
- Includes OAuth-based authentication flow
- Supports SSE (Server-Sent Events) transport
- Works with MCP Inspector for testing
- Connects to Claude Desktop via
mcp-remote - Local development with instant hot reload
Use cases of Remote MCP Server on Cloudflare
- Deploy a custom MCP server accessible from anywhere
- Securely expose MCP tools to AI assistants like Claude
- Prototype and iterate MCP tools locally before production
- Use Cloudflare’s global network for low-latency MCP endpoints
FAQ from Remote MCP Server on Cloudflare
How do I connect Claude Desktop to my local MCP server?
Edit your Claude configuration file to add an mcpServers entry using npx mcp-remote http://localhost:8787/sse. Restart Claude and you should see the available tools.
How do I deploy the MCP server to Cloudflare?
Run npx wrangler kv namespace create OAUTH_KV, add the returned KV namespace ID to wrangler.jsonc, then execute npm run deploy.
What should I do if something goes wrong?
Restart Claude, or try connecting directly to your MCP server with npx mcp-remote http://localhost:8787/sse. In rare cases, clear the auth files with rm -rf ~/.mcp-auth.
How can I test my MCP server remotely?
Use the MCP Inspector: run npx @modelcontextprotocol/inspector, set Transport Type to SSE, and enter your deployed workers.dev/sse URL (e.g., worker-name.account-name.workers.dev/sse).
What transport does the server use?
The server communicates via SSE (Server-Sent Events) over HTTP, as shown in the development and production connection URLs ending in /sse.
More Cloud & Infrastructure MCP servers
Lambda MCP Server Demo (Streamable HTTP)
mikegc-awsCreates a simple MCP tool server with "streaming" HTTP.
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
container-use
aluzzardiDevelopment environments for coding agents. Enable multiple agents to work safely and independently with your preferred stack.
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.
Mcp K8s Go
strowkMCP server connecting to Kubernetes
Comments