MCP.so
登录

Building a Remote MCP Server on Cloudflare (Without Auth)

@TiagoRechau

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

暂无概览

基本信息

分类

开发工具

运行时

node

传输方式

stdio

发布者

TiagoRechau

配置

暂无标准配置

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

代码仓库

工具

未检测到工具

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

概览

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

This example lets you deploy a remote MCP server that does not require authentication on Cloudflare Workers. It is intended for developers who want to run an MCP server without auth and connect it to clients like Cloudflare AI Playground or Claude Desktop.

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 by editing the init() method in src/index.ts. Connect clients using the SSE endpoint (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse). For Claude Desktop, use the mcp-remote proxy with the server URL.

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

  • Deploys a remote MCP server without authentication.
  • Runs on Cloudflare Workers.
  • Customizable tools via this.server.tool(...).
  • Connects directly to Cloudflare AI Playground.
  • Works with Claude Desktop using mcp-remote proxy.

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

  • Deploy a public MCP server for open access.
  • Integrate MCP tools into Cloudflare AI Playground workflows.
  • Use custom MCP tools from Claude Desktop remotely.
  • Prototype MCP services without auth infrastructure.

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

What does this server do?

It provides a ready‑to‑deploy MCP server on Cloudflare Workers that does not require authentication, enabling remote tool access via SSE.

How do I deploy this MCP server?

Use the "Deploy to Workers" button or run npm create cloudflare@latest with the provided template. Your server will be available at a URL like remote-mcp-server-authless.<your-account>.workers.dev/sse.

How can I add my own tools?

Edit the init() method in src/index.ts and define each tool with this.server.tool(...).

How do I connect to Cloudflare AI Playground?

Go to https://playground.ai.cloudflare.com/, enter your server's SSE URL, and use your tools directly from the playground.

How do I connect to Claude Desktop?

Use the mcp-remote npm proxy. Add a configuration entry in Claude Desktop pointing npx mcp-remote to your server's SSE URL.

评论

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