Building a Remote MCP Server on Cloudflare (Without Auth)
@moneyteamameen
About Building a Remote MCP Server on Cloudflare (Without Auth)
No overview available yet
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
}
}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 Building a Remote MCP Server on Cloudflare (Without Auth)?
This example lets you deploy a remote MCP server that requires no authentication on Cloudflare Workers. It provides an SSE endpoint and is intended for developers who want to host MCP tools server‑side, usable from remote MCP clients.
How to use Building a Remote MCP Server on Cloudflare (Without Auth)?
Deploy using the “Deploy to Workers” button or the npm create cloudflare CLI template. Customize by adding tools inside the init() method of src/index.ts using this.server.tool(...). Connect to it from Cloudflare AI Playground by entering the deployed URL, or from Claude Desktop via the mcp-remote proxy.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploy to Cloudflare Workers without authentication
- Exposes a remote SSE endpoint
- Easily add custom tools using Workers AI
- Connect directly from Cloudflare AI Playground
- Connect from Claude Desktop via
mcp-remoteproxy
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Hosting MCP tools on the edge for AI assistants
- Testing MCP integrations with Cloudflare AI Playground
- Using remote MCP tools from Claude Desktop
- Rapidly prototyping MCP servers without setting up auth
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
What is the server URL format?
After deploying, the server is available at remote-mcp-server-authless.<your-account>.workers.dev/sse.
How do I add my own tools?
Define each tool inside the init() method of src/index.ts using this.server.tool(...).
How do I connect Claude Desktop to this server?
Use the mcp-remote npm proxy. In Claude Desktop’s config, set the command to npx mcp-remote with the server’s SSE URL as an argument.
Does this server require authentication?
No. The server is designed to be authless.
What transport does the MCP server use?
The server uses SSE (Server‑Sent Events) as its transport.
Frequently asked questions
What is the server URL format?
After deploying, the server is available at `remote-mcp-server-authless.<your-account>.workers.dev/sse`.
How do I add my own tools?
Define each tool inside the `init()` method of `src/index.ts` using `this.server.tool(...)`.
How do I connect Claude Desktop to this server?
Use the `mcp-remote` npm proxy. In Claude Desktop’s config, set the command to `npx mcp-remote` with the server’s SSE URL as an argument.
Does this server require authentication?
No. The server is designed to be authless.
What transport does the MCP server use?
The server uses SSE (Server‑Sent Events) as its transport.
Basic information
More Developer Tools MCP servers
FastAPI-MCP
tadata-orgExpose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!

Moxie Docs
Jackalope-DevAutomated codebase documentation for GitHub: searchable docs, MCP context for AI agents, doc drift detection, and Friday Cleanup PRs.

BetterBugs
BetterBugsThe BetterBugs MCP (Model Context Protocol) enables you to load BetterBugs bug reports (via report links) directly to your preferred AI Agents and developer environments with MCP Client capabilities (such as Cursor, VS C

PuzzleTide Puzzle Generator
Caravaca-LabsWord search generator, crossword generator, and sudoku generator + solver as a local-first MCP server. 15 deterministic tools: printable PDF puzzle worksheets, themed word banks, and verifiable LLM evals. From the makers
mcp-excalidraw
yctimlinMCP server and Claude Code skill for Excalidraw — programmatic canvas toolkit to create, edit, and export diagrams via AI agents with real-time canvas sync.
Comments