Remote MCP Server on Cloudflare
@miltonian
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": {
"celp-remote-mcp-server": {
"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 template to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers, complete with OAuth login. It is for developers who want to expose MCP tools over the internet and connect them to clients like 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. For production, use npx wrangler kv namespace create OAUTH_KV, add the KV namespace ID to wrangler.jsonc, then npm run deploy. Connect clients (e.g., MCP Inspector or Claude Desktop) via SSE at the server’s /sse endpoint.
Key features of Remote MCP Server on Cloudflare
- Run MCP tools on Cloudflare Workers.
- OAuth login for authentication.
- Local development with live reload.
- Deployable to a public
workers.devURL. - Works with MCP Inspector and Claude Desktop.
Use cases of Remote MCP Server on Cloudflare
- Hosting custom MCP tools accessible from any remote client.
- Integrating MCP capabilities into Claude Desktop over the internet.
- Prototyping and testing MCP servers locally before deployment.
- Sharing MCP tools with team members via a public URL.
FAQ from Remote MCP Server on Cloudflare
What runtime does Remote MCP Server on Cloudflare require?
It runs on Cloudflare Workers; local development uses Node.js and the nx task runner. The Worker uses KV (OAuth_KV namespace) for OAuth state.
How do I connect an MCP client to the remote server?
Use the SSE transport. For the MCP Inspector, set Transport Type to SSE and enter <your-worker-url>/sse. For Claude Desktop, configure the mcpServers JSON with "command": "npx", "args": ["mcp-remote", "<your-url>/sse"].
Where does authentication data live?
OAuth tokens and state are stored in the Cloudflare KV namespace named OAUTH_KV.
Can I run multiple MCP servers on the same Worker?
The README focuses on a single MCP server; multiple tools can be defined within that server, but the setup does not show multi-server support.
How do I reset authentication if something goes wrong?
Clear the local auth files with rm -rf ~/.mcp-auth and/or restart Claude.
More Cloud & Infrastructure MCP servers
Lambda MCP Server Demo (Streamable HTTP)
mikegc-awsCreates a simple MCP tool server with "streaming" HTTP.
Kubernetes MCP Server
manusaModel Context Protocol (MCP) server for Kubernetes and OpenShift
aws-finops-mcp-server
ravikiranvmAn MCP (Model Context Protocol) server that brings powerful AWS FinOps capabilities directly into your AI assistant. Analyze cloud costs, audit for waste, and get budget insights using natural language, all while keeping your credentials secure on your local machine.
Sample Serverless MCP Servers
aws-samplesSample implementations of AI Agents and MCP Servers running on AWS Serverless compute
GCP MCP
eniayomiA Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with your Google Cloud Platform environment. This allows for natural language querying and management of your GCP resources during conversations.
Comments