Building a Remote MCP Server on Cloudflare (Without Auth)
@muratkryc
关于 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 lets you deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers without requiring authentication. It targets developers who want to expose MCP tools to remote clients with minimal setup.
How to use Building a Remote MCP Server on Cloudflare (Without Auth)?
Deploy by clicking the "Deploy to Workers" button (gets a URL like remote-mcp-server-authless.<your-account>.workers.dev/sse) or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Customize tools in src/index.ts inside the init() method. Then connect from Cloudflare AI Playground by entering the SSE URL, or from Claude Desktop via the mcp-remote proxy.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploy a remote MCP server to Cloudflare Workers with one click.
- No authentication required for client connections.
- Uses SSE (Server-Sent Events) transport.
- Connect directly from Cloudflare AI Playground.
- Works with Claude Desktop via mcp-remote proxy.
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Expose custom MCP tools to the Cloudflare AI Playground.
- Use MCP tools from Claude Desktop without local servers.
- Quickly prototype and test remote MCP tool invocation.
- Deploy a public MCP endpoint for development or demos.
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
How do I deploy this MCP server?
Use the "Deploy to Workers" button on the README or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless in your terminal.
How do I connect to it from Claude Desktop?
Install the mcp-remote proxy, then add a configuration entry to Claude Desktop's MCP settings pointing to your server's SSE URL (e.g., http://localhost:8787/sse or the deployed Workers URL).
How do I add my own tools?
Define each tool inside the init() method of src/index.ts using this.server.tool(...). Refer to Cloudflare's MCP tools documentation.
What transport does this server use?
It uses SSE (Server-Sent Events) at the /sse endpoint.
Does this server require authentication?
No, the deployed MCP server does not require authentication by default.
开发工具 分类下的更多 MCP 服务器
MCP Framework
QuantGeekDevThe Typescript MCP Framework
Smithery CLI
smithery-aiInstall, manage and develop MCP servers and skills for agents
nuxt-mcp / vite-plugin-mcp
antfuMCP server helping models to understand your Vite/Nuxt app better.
test
cloudwegoThe ultimate LLM/AI application development framework in Go.
Golf
golf-mcpProduction-Ready MCP Server Framework • Build, deploy & scale secure AI agent infrastructure • Includes Auth, Observability, Debugger, Telemetry & Runtime • Run real-world MCPs powering AI Agents
评论