Back to Apps

Remote MCP Server (Authless)
Supports UIby mhamidawad
Deploy an authentication-free remote MCP server on Cloudflare Workers for easy external access.
0 stars
Works in:claude
Exposes:Tools
What it does
Provides a template for deploying a remote Model Context Protocol server to Cloudflare Workers without requiring authentication. This allows you to host tools in the cloud and connect to them via SSE (Server-Sent Events) from various remote clients.
Tools
- Custom tools: This is a template server where you can define your own tools within the
init()method ofsrc/index.tsusingthis.server.tool(...).
Installation
Deploy to Cloudflare Workers using the provided deploy button or via CLI:
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
To connect 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", "your-worker-url.workers.dev/sse"]
}
}
}






