Back to Apps

Remote MCP Server (Authless)
by mhamidawad
A boilerplate for deploying a public-facing, authentication-free MCP server on Cloudflare Workers.
0 stars
Works in:claude
Exposes:Tools
What it does
This project provides a template for deploying a remote MCP server to Cloudflare Workers without requiring complex authentication. It allows developers to quickly prototype and host MCP tools that can be accessed by remote clients like the Cloudflare AI Playground or local clients via a proxy.
Tools
- This is a template; tools are defined by the developer in the
init()method ofsrc/index.tsusingthis.server.tool(...).
Installation
Deploy via Cloudflare Workers:
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
To connect to Claude Desktop via mcp-remote:
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": ["mcp-remote", "http://localhost:8787/sse"]
}
}
}
Supported hosts
- Claude Desktop
- Cloudflare AI Playground
Quick install
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authlessInformation
- Pricing
- free
- Published
- 7/4/2026
- stars
- 0
Categories
Choose your AI client and follow the steps below.
Claude Desktop
{
"mcpServers": {
"remote-mcp": {
"command": "npx",
"args": ["mcp-remote", "https://your-worker.workers.dev/sse"]
}
}
}





