Remote MCP Server on Cloudflare
@grocco
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-grocco": {
"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 blueprint for running a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It is intended for developers who want to deploy a secure, serverless MCP endpoint that can be accessed by MCP clients like Claude Desktop or the MCP Inspector.
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 for OAuth (npx wrangler kv namespace create OAUTH_KV), add its id to wrangler.jsonc, then run npm run deploy. Clients connect via SSE at the /sse endpoint, optionally using a local proxy like mcp-remote.
Key features of Remote MCP Server on Cloudflare
- Deployable to Cloudflare Workers as a serverless endpoint
- OAuth login for secure authenticated access
- Uses SSE transport for MCP communication
- Works with the official MCP Inspector for testing
- Connects to Claude Desktop via a local
mcp-remoteproxy - Stores OAuth state in a Cloudflare KV namespace
Use cases of Remote MCP Server on Cloudflare
- Deploy a custom MCP server to production without managing infrastructure
- Test and debug MCP tools locally with the MCP Inspector
- Connect Claude Desktop to a remote MCP server via OAuth
- Build a serverless MCP endpoint that multiple users can authenticate to
FAQ from Remote MCP Server on Cloudflare
How do I develop locally?
Clone the repo, run npm install, then npx nx dev remote-mcp-server. The server will be available at http://localhost:8787/. Use the MCP Inspector with SSE at http://localhost:8787/sse to test.
How do I deploy to Cloudflare?
Create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add its ID to wrangler.jsonc, then run npm run deploy. Your server will be available at a workers.dev URL.
How do I connect Claude Desktop to my remote MCP server?
Add an entry to Claude Desktop’s config file using npx mcp-remote pointing to your worker’s /sse endpoint (e.g., https://worker-name.account-name.workers.dev/sse). Restart Claude; it will open a browser for OAuth login.
How can I debug connection issues?
Restart Claude, or test directly with npx mcp-remote http://localhost:8787/sse. To clear cached OAuth state, remove the ~/.mcp-auth directory with rm -rf ~/.mcp-auth.
More Cloud & Infrastructure MCP servers
Awesome DevOps MCP Servers
rohitg00A curated list of awesome MCP servers focused on DevOps tools and capabilities.
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
Azure DevOps MCP Server
Tiberriver256An MCP server for Azure DevOps
Lambda MCP Server Demo (Streamable HTTP)
mikegc-awsCreates a simple MCP tool server with "streaming" HTTP.
Run Model Context Protocol (MCP) servers with AWS Lambda
awslabsRun existing Model Context Protocol (MCP) stdio-based servers in AWS Lambda functions
Comments