MCP.so
登录

Building a Remote MCP Server on Cloudflare (Without Auth)

@zaki-yama-labs

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

暂无概览

基本信息

分类

开发工具

运行时

node

传输方式

stdio

发布者

zaki-yama-labs

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "calculator": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8787/sse"
      ]
    }
  }
}

工具

未检测到工具

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

概览

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

A deployment template for creating 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 SSE without handling user access controls.

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

Deploy using 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 by calling this.server.tool(...). Connect to the deployed URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse) from remote MCP clients.

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

  • Deploy a remote MCP server with zero authentication required
  • Add custom MCP tools defined in src/index.ts
  • Connect directly from Cloudflare AI Playground
  • Connect from Claude Desktop using the mcp-remote proxy
  • Uses Cloudflare Workers for serverless hosting

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

  • Quickly expose MCP tools to AI clients without building auth infrastructure
  • Prototype and test MCP tools using Cloudflare AI Playground
  • Integrate remote MCP tools into local environments like Claude Desktop

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

How do I deploy the server?

Use the “Deploy to Workers” button on the README or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless in your terminal.

How do I add my own tools?

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

Can I connect to Cloudflare AI Playground?

Yes. Go to https://playground.ai.cloudflare.com/, enter your deployed MCP server URL (ending in /sse), and then use your tools directly.

How do I connect Claude Desktop to this server?

Install the mcp-remote npm package, then configure Claude Desktop’s mcpServers with "command": "npx", "args": ["mcp-remote", "<your-server-url>/sse"]. Restart Claude to see the tools.

Does the server require authentication?

No. This template deliberately omits authentication. All requests are accepted without credentials.

评论

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