Building a Remote MCP Server on Cloudflare (Without Auth)
@calvinvux
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",
"remote-mcp-server-authless.your-account.workers.dev/sse"
]
}
}
}Tools
No tools detected
Fetch the live tool list by running this server in a temporary sandbox using the button above.
Overview
What is Building a Remote MCP Server on Cloudflare (Without Auth)?
A template and guide for deploying a remote MCP (Model Context Protocol) server on Cloudflare Workers without requiring authentication. It is intended for developers who want to expose MCP tools over SSE via a serverless Worker.
How to use Building a Remote MCP Server on Cloudflare (Without Auth)?
Deploy using the "Deploy to Workers" button or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Customize tools by editing src/index.ts inside the init() method with this.server.tool(...). Connect from Cloudflare AI Playground (enter the deployed SSE URL) or from Claude Desktop using the mcp-remote proxy with the SSE URL in the MCP server configuration.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploys as a Cloudflare Worker (no auth required).
- Uses SSE (Server-Sent Events) transport.
- Tools are defined and customized in
src/index.ts. - Integrates with Cloudflare AI Playground as a remote MCP client.
- Connects to local clients like Claude Desktop via
mcp-remoteproxy.
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Exposing MCP tools on the internet without authentication for testing or internal use.
- Integrating custom MCP tools with the Cloudflare AI Playground.
- Using remote MCP tools from Claude Desktop through a proxy.
- Rapidly prototyping and deploying MCP servers using a serverless platform.
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
What transport does the server use?
The server communicates over Server-Sent Events (SSE), as seen in the URL path /sse.
Does the server require authentication?
No, this example explicitly does not include authentication. It is described as "without auth."
How do I add my own tools?
Edit src/index.ts and define each tool inside the init() method using this.server.tool(...).
How can I connect to this server from Claude Desktop?
Use the mcp-remote proxy (available via npx) and set the command in Claude Desktop's MCP configuration to npx mcp-remote <your-sse-url>.
Can I connect from the Cloudflare AI Playground?
Yes. Go to https://playground.ai.cloudflare.com/, enter your deployed SSE URL, and the tools become available.
Frequently asked questions
What transport does the server use?
The server communicates over Server-Sent Events (SSE), as seen in the URL path `/sse`.
Does the server require authentication?
No, this example explicitly does not include authentication. It is described as "without auth."
How do I add my own tools?
Edit `src/index.ts` and define each tool inside the `init()` method using `this.server.tool(...)`.
How can I connect to this server from Claude Desktop?
Use the `mcp-remote` proxy (available via npx) and set the command in Claude Desktop's MCP configuration to `npx mcp-remote <your-sse-url>`.
Can I connect from the Cloudflare AI Playground?
Yes. Go to https://playground.ai.cloudflare.com/, enter your deployed SSE URL, and the tools become available.
Basic information
More Developer Tools MCP servers
Vibgrate MCP
VibgrateQuery your team's drift, vulnerability, and migration data from any AI assistant. Vibgrate MCP connects Cursor, Claude, ChatGPT, Windsurf, or VS Code to Vibgrate Cloud: 51 tools for DriftScores, CVEs and EOL runtimes, up

Moxie Docs
Jackalope-DevAutomated codebase documentation for GitHub: searchable docs, MCP context for AI agents, doc drift detection, and Friday Cleanup PRs.
MCP Inspector
modelcontextprotocolVisual testing tool for MCP servers
MCP Unity Editor (Game Engine)
CoderGamesterModel Context Protocol (MCP) plugin to connect with Unity Editor — designed for Cursor, Claude Code, Codex, Windsurf and other IDEs

Air Pipe
airpipeBuild, validate, deploy — HTTP APIs, cron jobs, webhooks and MCP tools — from your AI client.
Comments