Building a Remote MCP Server on Cloudflare (Without Auth)
@joegulags
关于 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 deployment template and guide for running a remote MCP server on Cloudflare Workers with no authentication required. It is intended for developers who want to quickly expose MCP tools over SSE without building auth logic.
How to use Building a Remote MCP Server on Cloudflare (Without Auth)?
Click the "Deploy to Workers" button in the README to deploy instantly, or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless locally. After deployment, connect MCP clients (e.g., Cloudflare AI Playground or Claude Desktop) using the server’s SSE URL.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploy a remote MCP server on Cloudflare Workers
- No authentication required for connections
- Add custom tools via
this.server.tool(...)insrc/index.ts - Integrates with Cloudflare AI Playground as a remote MCP client
- Works with local MCP clients through the
mcp-remoteproxy
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Rapidly prototype MCP tools accessible over the internet
- Connect MCP tools to Cloudflare’s AI Playground for testing
- Expose tools to Claude Desktop without running a local MCP server
- Build serverless MCP endpoints for demo or internal use
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
How do I deploy the server?
Use the "Deploy to Workers" button or the npm create cloudflare command shown in the README.
How do I add custom tools?
Define each tool inside the init() method of src/index.ts using this.server.tool(...).
How can I connect from Cloudflare AI Playground?
Go to https://playground.ai.cloudflare.com/, enter your deployed MCP server’s SSE URL, and start using the tools.
How can I use the server with Claude Desktop?
Install the mcp-remote proxy (npx mcp-remote) and add a configuration entry to Claude Desktop pointing to the server’s SSE URL.
Does the server require any authentication?
No, this example is designed without authentication. Use it only in scenarios where auth is not needed.
开发工具 分类下的更多 MCP 服务器
MCP Containers
metorialConnect any AI model to 1200+ integrations (MCP, CLI, API)
mcp-excalidraw
yctimlinMCP server and Claude Code skill for Excalidraw — programmatic canvas toolkit to create, edit, and export diagrams via AI agents with real-time canvas sync.
MCP-Bridge
SecretiveShellA middleware to provide an openAI compatible endpoint that can call MCP tools
JetBrains MCP Proxy Server
JetBrainsA model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio
sentry-mcp
getsentryAn MCP server for interacting with Sentry via LLMs.
评论