Building a Remote MCP Server on Cloudflare (Without Auth)
@ashaney
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)?
This example deploys a remote MCP server that requires no authentication on Cloudflare Workers. It is intended for developers who want to quickly host and connect MCP tools from Cloudflare's edge network.
How to use Building a Remote MCP Server on Cloudflare (Without Auth)?
Deploy by clicking the "Deploy to Workers" button or by running npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Customize tools inside the init() method of src/index.ts using this.server.tool(...). Connect from Cloudflare AI Playground by entering the deployed SSE URL, or from Claude Desktop by configuring the mcp-remote proxy in your MCP settings.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploy to Cloudflare Workers with one click
- No authentication required on the server
- Customizable by adding tools in
src/index.ts - Supports SSE transport
- Works with remote MCP clients via mcp-remote proxy
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Quickly deploy a remote MCP server on Cloudflare's edge
- Connect MCP tools to Cloudflare AI Playground for testing
- Integrate a remote MCP server with Claude Desktop locally
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
What does this MCP server do?
It hosts a remote MCP server on Cloudflare Workers without authentication, allowing you to define and expose custom tools over SSE.
How do I deploy this MCP server?
Either 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 can I customize the MCP tools?
Add each tool inside the init() method of src/index.ts using this.server.tool(...).
How do I connect this MCP server to Cloudflare AI Playground?
Go to https://playground.ai.cloudflare.com/, enter your deployed SSE URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse), and you can use the tools directly.
How do I connect this MCP server to Claude Desktop?
Install the mcp-remote proxy, then add a configuration entry in Claude Desktop's MCP settings pointing to your server's SSE URL (local or remote). Restart Claude to see the tools.
More Developer Tools MCP servers
JetBrains MCP Proxy Server
JetBrainsA model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio
MCP Containers
metorialConnect any AI model to 1200+ integrations (MCP, CLI, API)
Hello World MCP Server (Reference Extension)
anthropicsDesktop Extensions: One-click local MCP server installation in desktop apps
test
cloudwegoThe ultimate LLM/AI application development framework in Go.

Sentry
modelcontextprotocolModel Context Protocol Servers
Comments