Building a Remote MCP Server on Cloudflare (Without Auth)
@alasdairnicol
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 demonstrates how to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers that requires no authentication. It is intended for developers who want to quickly set up a remote MCP server and connect it to clients like the Cloudflare AI Playground or Claude Desktop.
How to use Building a Remote MCP Server on Cloudflare (Without Auth)?
Deploy using the "Deploy to Workers" button or the CLI command npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. After deployment, the server is available at a URL like remote-mcp-server-authless.<your-account>.workers.dev/sse. Customize by adding tools inside the init() method of src/index.ts with this.server.tool(...). Connect to clients by entering the SSE endpoint URL.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploys a remote MCP server on Cloudflare Workers with no authentication.
- Provides a one-click deploy button or CLI setup.
- Supports custom tool definitions via
this.server.tool(...). - Connects directly to Cloudflare AI Playground as a remote MCP client.
- Works with Claude Desktop through the
mcp-remoteproxy.
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Quickly prototyping an MCP server without setting up authentication.
- Integrating MCP tools into Cloudflare's AI Playground for testing.
- Connecting a local MCP client (e.g., Claude Desktop) to a cloud-hosted server.
- Sharing a simple, public MCP server for demo or development purposes.
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
How do I deploy this MCP server?
Use the "Deploy to Workers" button from the README, or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless in your terminal.
How can I add my own tools?
Each tool is defined inside the init() method of src/index.ts using this.server.tool(...). Refer to Cloudflare’s MCP tools documentation for details.
How do I connect this 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 from the playground.
How do I connect Claude Desktop to this remote MCP server?
Install the mcp-remote proxy and configure Claude Desktop’s MCP settings with the mcp-remote command pointing to your server’s SSE URL. A sample configuration is provided in the README.
Does this server require authentication?
No, the title explicitly states "Without Auth". The server is deployed with no authentication mechanism.
More Developer Tools MCP servers
test
harlancA simple,high performance and secure live media server in pure Rust (RTMP[cluster]/RTSP/WebRTC[whip/whep]/HTTP-FLV/HLS).🦀
FastAPI-MCP
tadata-orgExpose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!
Serena
oraiosA powerful MCP toolkit for coding, providing semantic retrieval and editing capabilities - the IDE for your agent
JetBrains MCP Proxy Server
JetBrainsA model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio
Deepwiki MCP Server
regenrek📖 MCP server for fetch deepwiki.com and get latest knowledge in Cursor and other Code Editors
Comments