MCP.so
登录

Building a Remote MCP Server on Cloudflare (Without Auth)

@elizabethsiegle

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

Analyze and ask questions about an input website using this Cloudflare MCP server

基本信息

分类

云与基础设施

运行时

node

传输方式

stdio

发布者

elizabethsiegle

配置

暂无标准配置

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

代码仓库

工具

未检测到工具

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

概览

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

This example lets you deploy a remote MCP server without authentication on Cloudflare Workers, offering tools for website analysis and content extraction using Cloudflare’s Browser Rendering and AI capabilities. It is intended for developers who want a serverless, no‑auth MCP endpoint.

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. After deployment, you can connect from the Cloudflare AI Playground or from desktop clients (e.g., Claude Desktop) using the mcp-remote proxy with the endpoint remote-mcp-server-authless.<your-account>.workers.dev/sse.

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

  • analyze_website – scrapes and summarizes a site using Cloudflare AI.
  • ask_q_about_website – scrapes a site and answers a specific question.
  • Runs on Cloudflare Workers with zero authentication required.
  • Uses Cloudflare Browser Rendering and AI bindings.
  • Easily customizable by editing src/index.ts with this.server.tool(...).

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

  • Quickly summarize the content of any public website.
  • Ask targeted questions about a company’s services from its homepage.
  • Provide an open MCP endpoint for experimentation or prototyping.
  • Enable AI assistants to retrieve live web data without manual scraping.

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

What Cloudflare services are required?

You need Cloudflare Workers with browser binding (BROWSER) and AI binding (AI), both configured in wrangler.jsonc.

How can I connect Claude Desktop to this MCP server?

Use the mcp-remote proxy (npm package) and configure Claude Desktop with a JSON entry pointing to the server’s SSE URL.

Is authentication needed to use this server?

No — the server is intentionally deployed without any authentication.

How do I add my own tools?

Edit src/index.ts and inside the init() method use this.server.tool(...) to define new tools. See Cloudflare’s MCP tools documentation.

What transport does this server use?

It uses Server‑Sent Events (SSE) at the path /sse.

评论

云与基础设施 分类下的更多 MCP 服务器