Remote MCP Server on Cloudflare
@LightHeads
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-lightheads": {
"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 starter project to run a remote MCP (Model Context Protocol) server on Cloudflare Workers with OAuth login. It lets developers expose MCP tools over HTTP from a serverless edge environment.
How to use Remote MCP Server on Cloudflare?
Clone the repository, install dependencies, and run locally with npx nx dev remote-mcp-server. Deploy to Cloudflare using wrangler kv namespace create OAUTH_KV and npm run deploy. Connect MCP clients (MCP Inspector or Claude Desktop) via SSE at the server's /sse endpoint.
Key features of Remote MCP Server on Cloudflare
- Runs on Cloudflare Workers for global edge deployment.
- Includes OAuth login flow for authentication.
- Supports SSE (Server‑Sent Events) transport.
- Local development with live reload (
nx dev). - Uses
mcp-remoteproxy for Claude Desktop integration. - Persistent auth state via Cloudflare KV namespace.
Use cases of Remote MCP Server on Cloudflare
- Deploy MCP tools as a remote API accessible from any MCP client.
- Connect Claude Desktop to custom MCP tool servers hosted on Cloudflare.
- Prototype and test MCP servers locally before deploying to production.
- Add OAuth‑protected MCP endpoints for secure remote access.
FAQ from Remote MCP Server on Cloudflare
What transport does the server use?
The server communicates over SSE. Clients connect to the /sse endpoint.
How do I authenticate?
The server implements an OAuth login flow. During local development a mock login screen appears; after deployment real OAuth is used.
What runtime or dependencies are required?
Node.js and npm are needed for local development. Deployment requires a Cloudflare account and the Wrangler CLI.
Where does authentication data live?
OAuth state is stored in a Cloudflare KV namespace (OAUTH_KV) that you create during deployment.
How do I debug connection issues?
Restart Claude, or test directly with npx mcp-remote http://localhost:8787/sse. Clearing ~/.mcp-auth can resolve stale auth files.
More Cloud & Infrastructure MCP servers
AWS Model Context Protocol (MCP) Server
alexei-ledA lightweight service that enables AI assistants to execute AWS CLI commands (in safe containerized environment) through the Model Context Protocol (MCP). Bridges Claude, Cursor, and other MCP-aware AI tools with AWS CLI for enhanced cloud infrastructure management.
🐳 docker-mcp
QuantGeekDevA docker MCP Server (modelcontextprotocol)
Lambda MCP Server Demo (Streamable HTTP)
mikegc-awsCreates a simple MCP tool server with "streaming" HTTP.
AWS MCP
RafalWilinskiTalk with your AWS using Claude. Model Context Protocol (MCP) server for AWS. Better Amazon Q alternative.
MCP Gateway
mcp-ecosystem🧩 MCP Gateway - A lightweight gateway service that instantly transforms existing MCP Servers and APIs into MCP servers with zero code changes. Features Docker deployment and management UI, requiring no infrastructure modifications.
Comments