Building a Remote MCP Server on Cloudflare (Without Auth)
@mcc
About Building a Remote MCP Server on Cloudflare (Without Auth)
No overview available yet
Basic information
Config
No standard config provided
This server doesn't expose a parseable MCP config block in its README. See the repository for install instructions.
RepositoryTools
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 deploys a remote MCP (Model Context Protocol) server on Cloudflare Workers without requiring authentication. It is intended for developers who want a quick, public MCP server that can be used with remote MCP clients like Cloudflare AI Playground or local clients via a proxy.
How to use Building a Remote MCP Server on Cloudflare (Without Auth)?
Deploy by clicking the "Deploy to Workers" button or running npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Customize tools by editing the init() method in src/index.ts using this.server.tool(...). Connect via the Cloudflare AI Playground by entering the deployed SSE URL, or via Claude Desktop using the mcp-remote proxy and a JSON configuration.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploy an MCP server on Cloudflare Workers with one click.
- No authentication required for client connections.
- Uses Server-Sent Events (SSE) as transport.
- Easily add custom tools by editing a single file.
- Works with remote MCP clients like Cloudflare AI Playground.
- Can be used with local clients via the
mcp-remoteproxy.
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Quickly expose MCP tools to the internet without setting up authentication.
- Connect MCP tools to Cloudflare AI Playground for testing and experimentation.
- Use remote MCP tools from Claude Desktop by proxying through a local
mcp-remoteinstance.
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
What dependencies do I need to run this?
You need Node.js and npm (or a Cloudflare account for the one-click deploy). The template includes Cloudflare Workers dependencies.
How do I add my own tools?
Define each tool inside the init() method of src/index.ts using this.server.tool(...). See the Cloudflare MCP tools documentation for details.
How do I connect Claude Desktop to this remote server?
Use the mcp-remote npm package. Add an entry to Claude Desktop's MCP configuration with the command npx mcp-remote <your SSE URL>.
Where does the server data live?
The MCP server runs on Cloudflare Workers (edge network). No data persistence is described in the README; tools handle their own state.
What transport and authentication does it use?
It uses SSE transport and explicitly does not require authentication. The server is publicly accessible via its Workers URL.
More Developer Tools MCP servers
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
Stakpak Agent CLI
stakpakShip your code, on autopilot. An open source agent that lives on your machines 24/7 and keeps your apps running. 🦀
Deepwiki MCP Server
regenrek📖 MCP server for fetch deepwiki.com and get latest knowledge in Cursor and other Code Editors
Hello World MCP Server (Reference Extension)
anthropicsDesktop Extensions: One-click local MCP server installation in desktop apps
FastAPI-MCP
tadata-orgExpose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!
Comments