Remote MCP Server on Cloudflare
@FrankGoortani
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-frankgoortani": {
"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 template for deploying a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It lets developers expose MCP tools over HTTP and connect remote clients such as Claude Desktop or the MCP Inspector.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies with npm install, then run locally via npx nx dev remote-mcp-server. For deployment, create a KV namespace with npx wrangler kv namespace create OAUTH_KV, add its ID to wrangler.jsonc, and run npm run deploy. Connect clients by pointing them to the server’s /sse endpoint (e.g., localhost:8787/sse or a workers.dev URL).
Key features of Remote MCP Server on Cloudflare
- Runs on Cloudflare Workers for global deployment
- Includes OAuth login for authentication
- Supports SSE transport for remote MCP clients
- Provides a local development server
- Integrates with the MCP Inspector
- Connects to Claude Desktop via a proxy
Use cases of Remote MCP Server on Cloudflare
- Deploy MCP tools (e.g., a math tool) to the cloud
- Connect Claude Desktop to remote tools over the internet
- Test MCP servers locally with the MCP Inspector
- Build and iterate on custom MCP servers with minimal setup
FAQ from Remote MCP Server on Cloudflare
How do I connect Claude Desktop to my remote MCP server?
Edit Claude’s configuration file to add an MCP server entry using npx mcp-remote with your server’s full workers.dev/sse URL. The local proxy handles authentication via a browser login.
What transport type does the server use?
The server uses Server‑Sent Events (SSE). When connecting via the MCP Inspector, set the Transport Type to SSE.
How do I debug connection issues?
Restart Claude or test the connection directly with npx mcp-remote <server‑URL>. If authentication files cause trouble, clear them with rm -rf ~/.mcp-auth.
What runtime or dependencies are required?
Node.js is needed for local development and the mcp-remote proxy. The server itself runs on Cloudflare Workers via Wrangler.
How do I deploy the server?
Create a Cloudflare KV namespace named OAUTH_KV using Wrangler, add the namespace ID to wrangler.jsonc, and run npm run deploy. The server is then available at a workers.dev URL.
More Cloud & Infrastructure MCP servers
🐋 Docker MCP server
ckreilingMCP server for Docker
🐳 docker-mcp
QuantGeekDevA docker MCP Server (modelcontextprotocol)
Run Model Context Protocol (MCP) servers with AWS Lambda
awslabsRun existing Model Context Protocol (MCP) stdio-based servers in AWS Lambda functions
MCP Server Kubernetes
Flux159MCP Server for kubernetes management commands
Azure DevOps MCP Server
Tiberriver256An MCP server for Azure DevOps
Comments