Remote MCP Server on Cloudflare
@famadeuser
About Remote MCP Server on Cloudflare
No overview available yet
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.
Frequently asked questions
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`.
Basic information
More Cloud & Infrastructure MCP servers
Sample Serverless MCP Servers
aws-samplesSample implementations of AI Agents and MCP Servers running on AWS Serverless compute
MCP Gateway
mcp-ecosystem🧩 MCP Gateway - A lightweight gateway service that instantly transforms existing MCP Servers and APIs into MCP servers with zero code changes. Features Docker deployment and management UI, requiring no infrastructure modifications.
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.

Nippy
NippyNippy is drag-and-drop hosting (nippy.host) with an MCP server: connect it and your assistant can publish HTML, folders of photos, or file downloads to a live *.nippy.site URL — and keep editing the site in place at the
container-use
daggerDevelopment environments for coding agents. Enable multiple agents to work safely and independently with your preferred stack.
Comments