MCP.so
登录

Building a Remote MCP Server on Cloudflare (Without Auth)

@Surendra1232

关于 Building a Remote MCP Server on Cloudflare (Without Auth)

暂无概览

基本信息

分类

开发工具

运行时

node

传输方式

stdio

发布者

Surendra1232

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Building a Remote MCP Server on Cloudflare (Without Auth)?

This server is a template for deploying a Model Context Protocol (MCP) server on Cloudflare Workers that does not require authentication. It is intended for developers who want to quickly create and host remote MCP tools accessible via SSE (Server-Sent Events).

How to use Building a Remote MCP Server on Cloudflare (Without Auth)?

Deploy the server using the “Deploy to Workers” button or the command npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Customize tools by defining them inside the init() method of src/index.ts with this.server.tool(...). After deployment, connect MCP clients (e.g., Cloudflare AI Playground or Claude Desktop via the mcp-remote proxy) to the server’s SSE URL.

Key features of Building a Remote MCP Server on Cloudflare (Without Auth)

  • Deployable to Cloudflare Workers with one click or CLI.
  • No authentication required for connections.
  • Uses SSE transport for remote client access.
  • Customizable by adding your own MCP tools in TypeScript.
  • Works with the Cloudflare AI Playground as a remote client.
  • Can be connected to Claude Desktop via the mcp-remote proxy.

Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)

  • Hosting AI-powered MCP tools without setting up authentication.
  • Rapid prototyping and testing of MCP servers on a global edge network.
  • Integrating custom MCP tools into the Cloudflare AI Playground.
  • Connecting a remote MCP server to local desktop clients like Claude.

FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)

How do I deploy this MCP server?

You can deploy by clicking the “Deploy to Workers” button in the README or by running npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless on the command line.

How do I add custom tools to the server?

Define each tool inside the init() method of src/index.ts using this.server.tool(...). The server will expose any tools you add.

How can I connect to the server from Cloudflare AI Playground?

Go to https://playground.ai.cloudflare.com/, enter your deployed MCP server URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse), and start using the tools.

How do I connect Claude Desktop to this remote MCP server?

Use the mcp-remote proxy as a bridge. In Claude Desktop settings, add an MCP server with command: "npx" and arguments including mcp-remote and the SSE URL of your deployed server.

Does this server require any authentication?

No, this MCP server is explicitly built to work without authentication. All connections are open via the public SSE endpoint.

评论

开发工具 分类下的更多 MCP 服务器