Remote MCP Server on Cloudflare
@KaiLongWu
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-kailongwu": {
"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 reference implementation for deploying a remote MCP server on Cloudflare Workers with OAuth login. It shows developers how to build, run locally, and deploy an MCP server that remote clients (like Claude Desktop) can connect to over SSE.
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. For deployment, create a KV namespace and run npm run deploy. Connect MCP clients (Inspector or Claude Desktop) by pointing them to the SSE endpoint at /sse.
Key features of Remote MCP Server on Cloudflare
- Deploy a remote MCP server on Cloudflare Workers
- OAuth‑based login flow for MCP clients
- SSE transport for remote tool invocation
- Local development with the MCP Inspector
- Single‑command deployment via wrangler
Use cases of Remote MCP Server on Cloudflare
- Running an MCP server hosted on Cloudflare and accessed remotely
- Connecting Claude Desktop to a remotely hosted MCP server
- Testing and debugging MCP tools with the MCP Inspector
- Prototyping a production‑grade remote MCP deployment
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/.
How do I connect the MCP Inspector to my local server?
Start the inspector with npx @modelcontextprotocol/inspector, set Transport Type to SSE, enter http://localhost:8787/sse, and click “Connect”. A mock login screen appears; input any email and password.
How do I connect Claude Desktop to my local server?
Add the following to Claude’s mcpServers config: "command": "npx", "args": ["mcp-remote", "http://localhost:8787/sse"]. Restart Claude; a browser window will open for login.
How do I deploy to Cloudflare?
Run npx wrangler kv namespace create OAUTH_KV, add the namespace ID to wrangler.jsonc, then run npm run deploy. Your server will be available at a *.workers.dev URL.
How do I connect a remote MCP client after deployment?
Use the MCP Inspector or Claude Desktop with the URL https://your-worker.your-account.workers.dev/sse. For Claude, set "args": ["mcp-remote", "https://your-worker.your-account.workers.dev/sse"].
More Cloud & Infrastructure MCP servers
AWS MCP Servers
awslabsOpen source MCP Servers for AWS
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
Awesome DevOps MCP Servers
rohitg00A curated list of awesome MCP servers focused on DevOps tools and capabilities.
Run Model Context Protocol (MCP) servers with AWS Lambda
awslabsRun existing Model Context Protocol (MCP) stdio-based servers in AWS Lambda functions
Comments