Remote MCP Server on Cloudflare
@anniandnevi
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-anniandnevi": {
"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?
Remote MCP Server on Cloudflare is a guide and reference implementation for deploying a remote Model Context Protocol (MCP) server on Cloudflare Workers with OAuth login. It helps developers run MCP servers that can be accessed over HTTP and authenticated, and then connect them to clients such as the MCP Inspector or Claude Desktop.
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. To deploy, create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add the ID to wrangler.jsonc, and run npm run deploy. Connect clients such as the MCP Inspector by pointing it to the SSE endpoint at /sse, or configure Claude Desktop by adding an mcpServers entry that uses npx mcp-remote with the server’s URL.
Key features of Remote MCP Server on Cloudflare
- Deploy MCP server on Cloudflare Workers
- OAuth login integration for authentication
- Supports SSE (Server-Sent Events) transport
- Connect via the MCP Inspector
- Connect to Claude Desktop via local proxy
- Deploy with Wrangler CLI in a few steps
Use cases of Remote MCP Server on Cloudflare
- Running a custom MCP tool server hosted on Cloudflare Workers
- Providing OAuth‑protected MCP endpoints to remote clients
- Testing MCP server behavior locally with the MCP Inspector
- Integrating an MCP server with Claude Desktop over HTTP
- Developing and iterating on MCP tools before production deployment
FAQ from Remote MCP Server on Cloudflare
What runtime and dependencies are required?
You need Node.js and npm. The repository provides a package.json and uses npx for running commands like the MCP Inspector and the local proxy.
How do I deploy the server to Cloudflare?
Use Wrangler CLI. First create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add its ID to wrangler.jsonc, then run npm run deploy.
How do I connect Claude Desktop to the server?
Edit the Claude Desktop configuration file (found in Settings > Developer > Edit Config) and add an mcpServers entry that uses npx mcp-remote with your server’s URL (e.g., http://localhost:8787/sse locally or https://worker-name.account-name.workers.dev/sse after deployment). Restart Claude Desktop.
Does the server include authentication?
Yes. The server includes an OAuth login flow. When connecting via the MCP Inspector or Claude Desktop, a browser window opens allowing you to log in (locally a mock login is used; deployed it requires real OAuth).
What transport does the server use?
The server uses SSE (Server-Sent Events) as the transport protocol. The endpoint for connecting is <server-url>/sse.
More Cloud & Infrastructure MCP servers

Aws Kb Retrieval Server
modelcontextprotocolModel Context Protocol Servers
🐋 Docker MCP server
ckreilingMCP server for Docker
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
Supabase MCP Server
supabase-communityConnect Supabase to your AI assistants
Awesome DevOps MCP Servers
rohitg00A curated list of awesome MCP servers focused on DevOps tools and capabilities.
Comments