Remote MCP Server on Cloudflare
@oripitch
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-oripitch": {
"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 ready-to-deploy template that runs an MCP (Model Context Protocol) server on Cloudflare Workers with built-in OAuth login. It provides a starting point for developers who want to host remote MCP servers and connect them to MCP clients like Claude Desktop.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies with npm install, then run locally with npx nx dev remote-mcp-server. Deploy to Cloudflare using npm run deploy after creating an OAUTH_KV namespace. Connect clients (MCP Inspector, Claude Desktop) via the SSE endpoint http://localhost:8787/sse (local) or https://<worker-name>.<account>.workers.dev/sse (remote) using the mcp-remote proxy.
Key features of Remote MCP Server on Cloudflare
- Runs on Cloudflare Workers with global edge distribution
- OAuth login built in for secure client access
- Local development with hot-reload and mock login
- Connects to Claude Desktop via a local proxy (
mcp-remote) - Uses SSE (Server-Sent Events) transport for MCP communication
- Simple one-command deployment via Wrangler CLI
Use cases of Remote MCP Server on Cloudflare
- Hosting a private remote MCP server for personal AI assistants
- Testing MCP tool definitions locally before deploying to production
- Building a math tool server, as shown in the example configuration
- Integrating MCP-powered workflows with Claude Desktop from anywhere
FAQ from Remote MCP Server on Cloudflare
What dependencies are required?
Node.js and npm for local development, a Cloudflare account, and the Wrangler CLI (npx wrangler) for deployment.
How does authentication work?
The server uses OAuth login; during local development a mock login screen accepts any email and password, while on deployment it uses real OAuth flows.
What transport protocol does the server use?
Server-Sent Events (SSE) – clients connect to the /sse endpoint.
How can I connect Claude Desktop to this server?
Configure Claude’s MCP settings to run npx mcp-remote <server-url>/sse as a proxy command. A browser window will open for OAuth login.
Where is OAuth data stored?
In a Cloudflare KV namespace named OAUTH_KV that must be created before deployment and linked in the wrangler.jsonc configuration file.
More Cloud & Infrastructure MCP servers
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.
Supabase MCP Server
coleam00Supabase MCP server created in Python.
container-use
aluzzardiDevelopment environments for coding agents. Enable multiple agents to work safely and independently with your preferred stack.
container-use
daggerDevelopment environments for coding agents. Enable multiple agents to work safely and independently with your preferred stack.
tfmcp: Terraform Model Context Protocol Tool
nwiizo🌍 Terraform Model Context Protocol (MCP) Tool - An experimental CLI tool that enables AI assistants to manage and operate Terraform environments. Supports reading Terraform configurations, analyzing plans, applying configurations, and managing state with Claude Desktop integrati
Comments