Building a Remote MCP Server on Cloudflare (Without Auth)
@Shridhad
关于 Building a Remote MCP Server on Cloudflare (Without Auth)
暂无概览
基本信息
配置
工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Building a Remote MCP Server on Cloudflare (Without Auth)?
This server lets you deploy a remote MCP (Model Context Protocol) server on Cloudflare Workers that does not require authentication. It is intended for developers who want to expose MCP tools over the internet without adding auth layers.
How to use Building a Remote MCP Server on Cloudflare (Without Auth)?
Deploy by clicking the “Deploy to Workers” button or running npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Customize tools inside the init() method of src/index.ts using this.server.tool(...). Connect remote clients (e.g., AI Playground, Claude Desktop) by providing the deployed SSE URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse). For Claude Desktop, use the mcp-remote proxy tool as an intermediary.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Runs entirely on Cloudflare Workers for global edge deployment.
- No authentication required for client connections.
- Easily add custom MCP tools via the
init()method. - Connects directly to Cloudflare AI Playground as a remote MCP client.
- Works with local MCP clients (Claude Desktop) through the
mcp-remoteproxy.
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploying a remote MCP tool server that any client can access without login.
- Testing custom MCP tools quickly using Cloudflare AI Playground.
- Integrating remote MCP tools with Claude Desktop via a local proxy.
- Demonstrating MCP server architecture in a serverless, auth‑free environment.
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
What does this server do?
It provides a template and deployment method for a remote, authentication‑free MCP server hosted on Cloudflare Workers. You add your own tools to it.
How do I deploy my own instance?
Use the “Deploy to Workers” button on the README or run the npm create cloudflare@latest command with the specified template. This creates and publishes a Worker with the MCP server.
How can I add custom tools?
Inside src/index.ts, inside the init() method, call this.server.tool(...) to define each tool. Follow the Cloudflare MCP tools documentation for the exact API.
How do I connect a remote client?
For Cloudflare AI Playground, enter your deployed SSE URL directly. For Claude Desktop, install the mcp-remote npm package and configure the MCP client to use it as a proxy pointing to your SSE URL.
What transport and dependencies are used?
The server uses SSE (Server‑Sent Events) transport. It is built on the MCP SDK and deployed as a Cloudflare Worker. No authentication middleware is included.
开发工具 分类下的更多 MCP 服务器
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
MCP-Scan: An MCP Security Scanner
invariantlabs-aiSecurity scanner for AI agents, MCP servers and agent skills.
Smithery CLI
smithery-aiInstall, manage and develop MCP servers and skills for agents
Code Index MCP
johnhuang316A Model Context Protocol (MCP) server that helps large language models index, search, and analyze code repositories with minimal setup
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.
评论