Building a Remote MCP Server on Cloudflare (Without Auth)
@AtlanticBiz
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 Remote MCP Server on Cloudflare (Without Auth)?
This server allows you to deploy a remote MCP (Model Context Protocol) server that requires no authentication on Cloudflare Workers. It is intended for developers who want to expose MCP tools remotely without auth overhead.
How to use Remote MCP Server on Cloudflare (Without Auth)?
Deploy via the "Deploy to Workers" button or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Customize tools in the init() method of src/index.ts using this.server.tool(...). Connect from Cloudflare AI Playground by entering the SSE URL, or from Claude Desktop using the mcp-remote proxy with a configuration like "command": "npx", "args": ["mcp-remote", "http://localhost:8787/sse"].
Key features of Remote MCP Server on Cloudflare (Without Auth)
- Deployed on Cloudflare Workers with no authentication required.
- Supports adding custom tools via the MCP server’s
tool()method. - Connects seamlessly to Cloudflare AI Playground as a remote MCP client.
- Compatible with Claude Desktop via the
mcp-remoteproxy. - One-click deployment from the GitHub button or npm create command.
Use cases of Remote MCP Server on Cloudflare (Without Auth)
- Expose a public MCP server for testing or development without auth barriers.
- Integrate custom tools into Cloudflare’s AI Playground for interactive experimentation.
- Connect local MCP clients (e.g., Claude Desktop) to a cloud‑hosted tool server.
FAQ from Remote MCP Server on Cloudflare (Without Auth)
How do I deploy the server?
Use the “Deploy to Workers” button or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless in the command line.
How do I add my own tools?
Inside the init() method of src/index.ts, define each tool using this.server.tool(name, schema, handler).
Can I connect to it from Claude Desktop?
Yes, install the mcp-remote proxy and configure Claude Desktop’s MCP servers with a JSON entry pointing to the deployed SSE URL.
What runtime/requirements does it need?
It runs on Cloudflare Workers; no local runtime is required after deployment. The mcp-remote proxy (for local clients) needs Node.js and npx.
Does the server require authentication?
No, this example is specifically built without authentication.
More Developer Tools MCP servers
test
cloudwegoThe ultimate LLM/AI application development framework in Go.
Unity MCP (Server + Plugin)
IvanMurzakAI Skills, MCP Tools, and CLI for Unity Engine. Full AI develop and test loop. Use cli for quick setup. Efficient token usage, advanced tools. Any C# method may be turned into a tool by a single line. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for fr
Deepwiki MCP Server
regenrek📖 MCP server for fetch deepwiki.com and get latest knowledge in Cursor and other Code Editors
Serena
oraiosA powerful MCP toolkit for coding, providing semantic retrieval and editing capabilities - the IDE for your agent
FastAPI-MCP
tadata-orgExpose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!
Comments