Building a Remote MCP Server on Cloudflare (Without Auth)
@kathayl
关于 Building a Remote MCP Server on Cloudflare (Without Auth)
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Building a Remote MCP Server on Cloudflare (Without Auth)?
This project allows you to deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers without requiring authentication. It is intended for developers who want to expose MCP tools over SSE to remote 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 run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless locally. Customize tools by editing src/index.ts and using this.server.tool(...) inside the init() method. Connect remote clients by pointing them to the deployed URL (e.g. remote-mcp-server-authless.<your-account>.workers.dev/sse).
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deployable directly from a button or CLI
- No authentication required for the server
- Fully customizable tools via code
- Compatible with Cloudflare AI Playground as a remote client
- Works with Claude Desktop via the
mcp-remoteproxy
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Expose MCP tools to the Cloudflare AI Playground for quick prototyping
- Connect local AI assistants like Claude Desktop to a remote tool server
- Build and test MCP tools without managing authentication infrastructure
- Serve lightweight, stateless tools from a global edge network
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
What URL does my MCP server get?
After deployment, your server is available at remote-mcp-server-authless.<your-account>.workers.dev/sse (or a local URL like http://localhost:8787/sse when running in development).
How do I add custom tools?
Edit src/index.ts and call this.server.tool(...) inside the init() method. Each tool definition follows the standard MCP tool schema.
Can I connect this server to Claude Desktop?
Yes. Use the mcp-remote proxy — install it via npx and add a configuration entry in Claude Desktop pointing to your server’s SSE endpoint.
What are the runtime requirements?
You need a Cloudflare Workers account and Node.js/npm installed locally. The deployed worker runs on Cloudflare’s edge network with no additional dependencies.
How do clients communicate with the server?
The server uses SSE (Server-Sent Events) as its transport. Clients connect to the /sse endpoint and exchange messages over the MCP protocol without authentication.
开发工具 分类下的更多 MCP 服务器
Minecraft MCP Server
yuniko-softwareA Minecraft MCP Server powered by Mineflayer API. It allows to control a Minecraft character in real-time, allowing AI assistants to build structures, explore the world, and interact with the game environment through natural language instruction

Sentry
modelcontextprotocolModel Context Protocol Servers
sentry-mcp
getsentryAn MCP server for interacting with Sentry via LLMs.
DevDocs by CyberAGI 🚀
cyberagiincCompletely free, private, UI based Tech Documentation MCP server. Designed for coders and software developers in mind. Easily integrate into Cursor, Windsurf, Cline, Roo Code, Claude Desktop App
MCP Inspector
modelcontextprotocolVisual testing tool for MCP servers
评论