MCP.so
Sign In
Servers

Building a Remote MCP Server on Cloudflare (Without Auth)

@ashaney

Overview

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

This example deploys a remote MCP server that requires no authentication on Cloudflare Workers. It is intended for developers who want to quickly host and connect MCP tools from Cloudflare's edge network.

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. Customize tools inside the init() method of src/index.ts using this.server.tool(...). Connect from Cloudflare AI Playground by entering the deployed SSE URL, or from Claude Desktop by configuring the mcp-remote proxy in your MCP settings.

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

  • Deploy to Cloudflare Workers with one click
  • No authentication required on the server
  • Customizable by adding tools in src/index.ts
  • Supports SSE transport
  • Works with remote MCP clients via mcp-remote proxy

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

  • Quickly deploy a remote MCP server on Cloudflare's edge
  • Connect MCP tools to Cloudflare AI Playground for testing
  • Integrate a remote MCP server with Claude Desktop locally

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

What does this MCP server do?

It hosts a remote MCP server on Cloudflare Workers without authentication, allowing you to define and expose custom tools over SSE.

How do I deploy this MCP server?

Either 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 can I customize the MCP tools?

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

How do I connect this MCP server 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 you can use the tools directly.

How do I connect this MCP server to Claude Desktop?

Install the mcp-remote proxy, then add a configuration entry in Claude Desktop's MCP settings pointing to your server's SSE URL (local or remote). Restart Claude to see the tools.

Tags

More from Developer Tools