MCP.so
登录

Building a Remote MCP Server on Cloudflare (Without Auth)

@anniandnevi

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

暂无概览

基本信息

分类

开发工具

运行时

node

传输方式

stdio

发布者

anniandnevi

配置

暂无标准配置

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

代码仓库

工具

未检测到工具

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

概览

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

A template for deploying a remote Model Context Protocol server on Cloudflare Workers without authentication, providing an SSE endpoint for MCP clients. It is intended for developers who want a quick, publicly accessible MCP server for prototyping or tools that don’t require auth.

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

Deploy using the “Deploy to Workers” button or via the CLI command npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless. Customize tools inside the init() method of src/index.ts by calling this.server.tool(...). Connect clients by pointing them to the deployed SSE URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse).

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

  • Deployable with one click to Cloudflare Workers
  • No authentication required for access
  • Exposes tools via an SSE endpoint
  • Ready-to-use template with customization hooks
  • Supports connection from Cloudflare AI Playground and Claude Desktop

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

  • Quickly prototyping an MCP server without setting up auth
  • Exposing MCP tools to the Cloudflare AI Playground
  • Connecting a remote MCP server to Claude Desktop via the mcp-remote proxy

FAQ from Remote MCP Server on Cloudflare (Without Auth)

What is the deployed URL format?

After deployment the URL is remote-mcp-server-authless.<your-account>.workers.dev/sse.

How do I add my own tools?

Define each tool inside the init() method of src/index.ts using this.server.tool(...).

How do I connect the server to Cloudflare AI Playground?

Go to https://playground.ai.cloudflare.com/, enter your deployed SSE URL, and the tools become available in the playground.

How do I connect the server to Claude Desktop?

Use the mcp-remote proxy (npx mcp-remote <sse-url>) in your Claude Desktop configuration, then restart Claude.

Does the server require authentication?

No – this server explicitly does not require authentication. It is designed for authless access.

评论

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