Building a Remote MCP Server on Cloudflare (Without Auth)
@zaki-yama-labs
About Building a Remote MCP Server on Cloudflare (Without Auth)
No overview available yet
Basic information
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)?
A deployment template for creating a remote MCP (Model Context Protocol) server on Cloudflare Workers that does not require authentication. It is intended for developers who want to expose MCP tools over SSE without handling user access controls.
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 inside the init() method of src/index.ts by calling this.server.tool(...). Connect to the deployed URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse) from remote MCP clients.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploy a remote MCP server with zero authentication required
- Add custom MCP tools defined in
src/index.ts - Connect directly from Cloudflare AI Playground
- Connect from Claude Desktop using the
mcp-remoteproxy - Uses Cloudflare Workers for serverless hosting
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Quickly expose MCP tools to AI clients without building auth infrastructure
- Prototype and test MCP tools using Cloudflare AI Playground
- Integrate remote MCP tools into local environments like Claude Desktop
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
How do I deploy the server?
Use the “Deploy to Workers” button on the README or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless in your terminal.
How do I add my own tools?
Define each tool inside the init() method of src/index.ts using this.server.tool(...).
Can I connect to Cloudflare AI Playground?
Yes. Go to https://playground.ai.cloudflare.com/, enter your deployed MCP server URL (ending in /sse), and then use your tools directly.
How do I connect Claude Desktop to this server?
Install the mcp-remote npm package, then configure Claude Desktop’s mcpServers with "command": "npx", "args": ["mcp-remote", "<your-server-url>/sse"]. Restart Claude to see the tools.
Does the server require authentication?
No. This template deliberately omits authentication. All requests are accepted without credentials.
More Developer Tools MCP servers
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.
Golf
golf-mcpProduction-Ready MCP Server Framework • Build, deploy & scale secure AI agent infrastructure • Includes Auth, Observability, Debugger, Telemetry & Runtime • Run real-world MCPs powering AI Agents
TalkToFigma
sonnylazuardiTalkToFigma: MCP integration between AI Agent (Cursor, Claude Code, Codex) and Figma, allowing Agentic AI to communicate with Figma for reading designs and modifying them programmatically.
Burp Suite MCP Server Extension
PortSwiggerMCP Server for Burp
DevDocs by CyberAGI 🚀
cyberagiincCompletely free, private, UI based Tech Documentation MCP server. Designed for coders and software developers in mind. Easily integrate into Cursor, Windsurf, Cline, Roo Code, Claude Desktop App
Comments