MCP.so
Sign In

Building a Remote MCP Server on Cloudflare (Without Auth)

@mohdsuhail007

About Building a Remote MCP Server on Cloudflare (Without Auth)

No overview available yet

Basic information

Category

Developer Tools

Runtime

node

Transports

stdio

Publisher

mohdsuhail007

Config

No standard config provided

This server doesn't expose a parseable MCP config block in its README. See the repository for install instructions.

Repository

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

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

This server lets you deploy a remote Model Context Protocol (MCP) server on Cloudflare Workers without requiring authentication. It is designed for developers who want to expose MCP tools over SSE (Server-Sent Events) to remote clients such as Cloudflare’s AI Playground or Claude Desktop.

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

Deploy by clicking the Deploy to Workers button or by running npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless in your terminal. After deployment, connect clients by pointing them to your server’s SSE URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse). To add custom tools, edit the init() method in src/index.ts using this.server.tool(...).

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

  • Deploy a remote MCP server without authentication.
  • Hosted on Cloudflare Workers for global, low-latency access.
  • Includes a one-click Deploy to Workers button.
  • Supports custom tool definitions via the init() method.
  • Compatible with Cloudflare AI Playground and Claude Desktop.
  • Uses SSE transport for real-time communication.

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

  • Connect custom MCP tools to Cloudflare’s AI Playground from any location.
  • Use MCP tools inside Claude Desktop via a remote proxy.
  • Prototype and test MCP servers without setting up authentication.
  • Quickly share MCP tool access with teammates or public users.

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

How do I deploy the MCP server?

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

How do I connect it to Cloudflare AI Playground?

Go to https://playground.ai.cloudflare.com/, enter your deployed SSE URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse), and start using your tools.

How do I connect Claude Desktop to this server?

Install the mcp-remote proxy (npx mcp-remote) and add a configuration entry in Claude Desktop’s settings (Developer > Edit Config) with the remote SSE URL.

How do I add custom tools?

Define each tool inside the init() method of src/index.ts using this.server.tool(...). Refer to Cloudflare’s MCP tools documentation for the full API.

Does this server require authentication?

No, this example is deliberately built without authentication. The server is public and accessible to anyone with the SSE URL.

Comments

More Developer Tools MCP servers