Building a Remote MCP Server on Cloudflare (Without Auth)
@jingwei950
About Building a Remote MCP Server on Cloudflare (Without Auth)
No overview available yet
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"clickup-mcp-server-jingwei950": {
"command": "npx",
"args": [
"wrangler",
"login"
]
}
}
}Tools
No tools detected
Fetch the live tool list by running this server in a temporary sandbox using the button above.
Overview
What is Building a Remote MCP Server on Cloudflare (Without Auth)?
This example allows you to deploy a remote MCP server that doesn't require authentication on Cloudflare Workers. It is intended for developers who want a simple, publicly accessible MCP server without setting up authentication.
How to use Building a Remote MCP Server on Cloudflare (Without Auth)?
Use the one-click "Deploy to Workers" button or run npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless locally. After deployment, the server is accessible via a Workers URL ending in /sse. Secrets such as API keys can be added via wrangler secret put or the Cloudflare Dashboard.
Key features of Building a Remote MCP Server on Cloudflare (Without Auth)
- Deploy a remote MCP server without authentication.
- One-click deploy directly from the GitHub repository.
- Local development with
wrangler devand.dev.varsfor secrets. - Securely manage production secrets via Wrangler or Dashboard.
- Add custom MCP tools inside the
init()method ofsrc/index.ts.
Use cases of Building a Remote MCP Server on Cloudflare (Without Auth)
- Connect your MCP server to the Cloudflare AI Playground.
- Integrate MCP tools with Claude Desktop using the
mcp-remoteproxy. - Quickly prototype an MCP server without setting up authentication.
FAQ from Building a Remote MCP Server on Cloudflare (Without Auth)
How do I deploy the MCP server manually?
Clone the repository, run npm install, log in with npx wrangler login, then deploy with npx wrangler deploy. The worker will be available at a URL like my-mcp-server.<your-account>.workers.dev/sse.
How do I manage secrets/API keys for custom tools?
For production, use npx wrangler secret put YOUR_SECRET_NAME or the Cloudflare Dashboard (Settings > Variables > Add Variable > Encrypt). For local development, create a .dev.vars file (do not commit it) with YOUR_SECRET_NAME="value". Access secrets via the env object in your worker code.
How do I connect to Cloudflare AI Playground?
Go to https://playground.ai.cloudflare.com/, enter your deployed MCP server URL (e.g., remote-mcp-server-authless.<your-account>.workers.dev/sse), and you can use the tools from the playground.
How do I connect Claude Desktop to this remote MCP server?
Install the mcp-remote npm package, then configure Claude Desktop's mcpServers with command: "npx" and args: ["mcp-remote", "<your-server-url>/sse"]. Restart Claude to see the tools.
What runtime or dependencies are required?
The server runs on Cloudflare Workers. For local development, you need Node.js and npm. No authentication libraries are required for this server.
Frequently asked questions
How do I deploy the MCP server manually?
Clone the repository, run `npm install`, log in with `npx wrangler login`, then deploy with `npx wrangler deploy`. The worker will be available at a URL like `my-mcp-server.<your-account>.workers.dev/sse`.
How do I manage secrets/API keys for custom tools?
For production, use `npx wrangler secret put YOUR_SECRET_NAME` or the Cloudflare Dashboard (Settings > Variables > Add Variable > Encrypt). For local development, create a `.dev.vars` file (do not commit it) with `YOUR_SECRET_NAME="value"`. Access secrets via the `env` object in your worker code.
How do I connect to Cloudflare AI Playground?
Go to https://playground.ai.cloudflare.com/, enter your deployed MCP server URL (e.g., `remote-mcp-server-authless.<your-account>.workers.dev/sse`), and you can use the tools from the playground.
How do I connect Claude Desktop to this remote MCP server?
Install the `mcp-remote` npm package, then configure Claude Desktop's `mcpServers` with `command: "npx"` and `args: ["mcp-remote", "<your-server-url>/sse"]`. Restart Claude to see the tools.
What runtime or dependencies are required?
The server runs on Cloudflare Workers. For local development, you need Node.js and npm. No authentication libraries are required for this server.
Basic information
More Developer Tools MCP servers
Altronis
sypherinMCP server + CLI for Altronis — Singapore AI consulting. Ask the Lyra consultant, generate a grant-matched AI transformation plan, pull curated SG AI events/news. Read-only, wraps altronis.sg.

Raccha AI
Shree MandadiMCP-first toolbox for agents: namespaced key-value storage, a FIFO queue, auth, and a handful of stateless utility tools (JWT decode, hashing, cert inspection, CIDR math). Free while in early access. This repository is a

discoverGPT
Joe MonastierodiscoverGPT is visualAI's unified MCP gateway for AI commerce, exposing 29 tools across four capabilities on one canonical product catalog: trimodal search (natural-language, precise-color, and image-similarity), AI cata
extentos
Asger mølgaardExtentos is a multi-vendor development platform for adding smart-glasses capabilities to existing iOS and Android apps. The simplest analogy is Stripe for smart glasses:

Perfex CRM
themesicTurn Perfex CRM into an AI-ready workspace. This MCP server exposes your full REST API to Claude, ChatGPT and any AI agent, so leads, invoices and tasks are one prompt away.
Comments