MCP.so
登录

Building a Remote MCP Server on Cloudflare (Without Auth)

@tomklein0

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

暂无概览

基本信息

分类

开发工具

运行时

node

传输方式

stdio

发布者

tomklein0

配置

暂无标准配置

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

代码仓库

工具

未检测到工具

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

概览

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

This example deploys a remote MCP server on Cloudflare Workers without requiring authentication. It is intended for developers who want a quick, public MCP server endpoint for tools accessible via server-sent events (SSE).

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

Deploy via the “Deploy to Workers” button or run 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 to Cloudflare AI Playground by entering the deployed SSE URL, or connect to Claude Desktop using the mcp-remote proxy with the SSE URL in the claude_desktop_config.json.

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

  • Deploy a remote MCP server on Cloudflare Workers.
  • No authentication required for the server.
  • Exposes an SSE endpoint at /sse.
  • Supports custom tools defined in src/index.ts.
  • Works with Cloudflare AI Playground and Claude Desktop.

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

  • Quickly prototyping remote MCP tools for AI clients.
  • Connecting Cloudflare AI Playground to custom MCP tools.
  • Using a remote MCP server with local Claude Desktop via an SSE proxy.
  • Demo or testing environments where authentication is not needed.

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

What is the server URL after deployment?

The URL follows the pattern remote-mcp-server-authless.<your-account>.workers.dev/sse.

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 this server to Claude Desktop?

Use the mcp-remote proxy: install it via npm, then configure Claude Desktop settings with the SSE URL as shown in the README.

What runtime or dependencies are required?

The server runs on Cloudflare Workers. Local development requires Node.js and the Cloudflare CLI (npm create cloudflare).

Does this server include authentication?

No, the server is intentionally built without authentication.

评论

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