Building a Remote MCP Server on Cloudflare (Without Auth)
@roerohan
关于 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)?
A template to deploy a remote Model Context Protocol (MCP) server on Cloudflare Workers without authentication. It enables building and exposing MCP tools via Cloudflare's edge network.
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. Customize tools in the init() method of src/index.ts by calling this.server.tool(...). Connect remote clients like Cloudflare AI Playground or Claude Desktop (via the mcp-remote proxy) to the SSE endpoint.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploy without authentication on Cloudflare Workers.
- One-click deployment or CLI setup.
- Add custom MCP tools with TypeScript.
- Connect to Cloudflare AI Playground remotely.
- Connect to Claude Desktop via mcp-remote proxy.
- SSE-based remote MCP server endpoint.
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploy an MCP server accessible without authentication for rapid prototyping.
- Use MCP tools directly from Cloudflare AI Playground.
- Connect local MCP clients like Claude Desktop to remote tools via proxy.
- Build and test custom MCP tools on Cloudflare's edge network.
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
How do I deploy the server?
Use the "Deploy to Workers" button or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless in your terminal.
How do I add custom tools?
Define each tool inside the init() method of src/index.ts using this.server.tool(...).
How do I connect to Cloudflare AI Playground?
Go to https://playground.ai.cloudflare.com/ and enter your deployed MCP server URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse).
How do I connect to Claude Desktop?
Use the mcp-remote proxy. Configure Claude Desktop's MCP settings with "command": "npx", "args": ["mcp-remote", "<your-sse-url>"].
开发工具 分类下的更多 MCP 服务器
MCP-Scan: An MCP Security Scanner
invariantlabs-aiSecurity scanner for AI agents, MCP servers and agent skills.
Unity MCP (Server + Plugin)
IvanMurzakAI Skills, MCP Tools, and CLI for Unity Engine. Full AI develop and test loop. Use cli for quick setup. Efficient token usage, advanced tools. Any C# method may be turned into a tool by a single line. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for fr
FastAPI-MCP
tadata-orgExpose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!
TalkToFigma
sonnylazuardiTalkToFigma: MCP integration between AI Agent (Cursor, Claude Code, Codex) and Figma, allowing Agentic AI to communicate with Figma for reading designs and modifying them programmatically.
MCP-Bridge
SecretiveShellA middleware to provide an openAI compatible endpoint that can call MCP tools
评论