Remote MCP Server on Cloudflare
@h13t0ry
About Remote MCP Server on Cloudflare
my-mcp-server(without auth)
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"my-mcp-server-h13t0ry": {
"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 starter project for deploying a Model Context Protocol (MCP) server to Cloudflare Workers with OAuth login. It is intended for developers who want to run an MCP server remotely and connect to clients such as Claude Desktop.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies, and run npx nx dev remote-mcp-server to start locally. Deploy using npm run deploy after creating a KV namespace for OAuth. Connect clients like the MCP Inspector or Claude Desktop using the SSE endpoint (e.g., http://localhost:8787/sse or a workers.dev URL) via the mcp-remote proxy.
Key features of Remote MCP Server on Cloudflare
- Run MCP server locally with
npx nx dev remote-mcp-server - Deploy to Cloudflare Workers with
npm run deploy - OAuth login implemented using Cloudflare KV
- Connect via SSE transport for remote access
- Works with MCP Inspector and Claude Desktop
Use cases of Remote MCP Server on Cloudflare
- Host a custom MCP server on Cloudflare’s global network
- Test MCP tools locally with the MCP Inspector
- Connect a remote MCP server to Claude Desktop
- Add OAuth-based authentication to an MCP server
FAQ from Remote MCP Server on Cloudflare
How do I connect to the server using the MCP Inspector?
In the inspector, switch Transport Type to SSE and enter the server’s SSE URL (e.g., http://localhost:8787/sse), then click “Connect”. You will be redirected to a login screen.
How do I connect Claude Desktop to my remote server?
Edit the Claude Desktop configuration file and add an entry with "command": "npx", "args": ["mcp-remote", "https://your-worker.workers.dev/sse"]. Restart Claude.
What are the runtime dependencies?
Node.js and npm are required for local development. Deploying requires a Cloudflare account and wrangler CLI. The mcp-remote package is used as a local proxy.
Where are OAuth tokens stored?
OAuth data is stored in a Cloudflare KV namespace named OAUTH_KV. You must create this namespace before deploying.
How can I debug connection issues?
Try restarting Claude or connecting directly using npx mcp-remote http://localhost:8787/sse. In rare cases, clearing ~/.mcp-auth with rm -rf ~/.mcp-auth may help.
More Cloud & Infrastructure MCP servers
AWS MCP
RafalWilinskiTalk with your AWS using Claude. Model Context Protocol (MCP) server for AWS. Better Amazon Q alternative.
Terraform MCP Server
hashicorpThe Terraform MCP Server provides seamless integration with Terraform ecosystem, enabling advanced automation and interaction capabilities for Infrastructure as Code (IaC) development.
Firebase MCP
gannonh🔥 Model Context Protocol (MCP) server for Firebase.
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
Comments