基本能力
产品定位
远程MCP服务器,无需认证,部署在Cloudflare Workers上。
核心功能
- 部署无需认证的远程MCP服务器
- 支持自定义工具
- 可通过Cloudflare AI Playground或本地MCP客户端连接
适用场景
- 开发者需要快速部署一个远程MCP服务器
- 需要通过Cloudflare AI Playground或本地MCP客户端使用自定义工具
工具列表
- 自定义工具:用户可以在
src/index.ts的init()方法中定义自己的工具
使用教程
使用依赖
无特殊依赖,只需Cloudflare账号。
安装教程
- 通过Cloudflare Workers按钮部署:

- 或使用命令行部署:
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless调试方式
- 连接到Cloudflare AI Playground:
- 访问 https://playground.ai.cloudflare.com/ - 输入部署的MCP服务器URL
- 连接到Claude Desktop:
- 按照Anthropic的Quickstart指南操作 - 在Claude Desktop的设置中更新配置为:
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
}
}- 重启Claude
