Cloudflare Remote MCP
Cloudflare's hosting platform for Remote MCP servers. Deploy a server as a Worker and any client can hit it over HTTPS — no local install.
Delv Safety Grade: A
Score 83/100 · assessed 2026-04-19
Cloudflare Remote MCP is a hosting platform for deploying MCP servers as Workers, maintained by a major cloud infrastructure vendor with strong operational track record. The platform itself is well-documented and leverages Cloudflare's established deployment tooling (Wrangler). Security posture is reasonable: servers run in Cloudflare's V8 isolate sandbox with resource limits, but the platform inherently expands attack surface by exposing MCP servers over public HTTPS. Each deployed server's safety depends entirely on what the developer builds—Cloudflare provides infrastructure, not content review. Supply chain is solid (standard Wrangler deploy, npm-based) but there's no central registry or vetting of what gets deployed. Transparency is good with public docs, though no dedicated open-source repo for the platform itself. No known incidents. The main risk is that remote exposure means any credential leak or misconfigured server is immediately internet-accessible.
Green flags
- Maintained by Cloudflare, major vendor with strong infrastructure track record
- Workers run in V8 isolate sandbox with resource limits and timeouts
- Well-documented deployment process via established Wrangler tooling
- No local runtime required on client machines, simplifies distribution
- Leverages Cloudflare's existing security and DDoS protection
Red flags
- Exposes MCP servers over public HTTPS, increasing attack surface vs local-only
- No vetting or review of what developers deploy as Workers
- Server security entirely dependent on developer implementation quality
- Credentials in deployed Workers accessible if misconfigured or leaked
Permissions requested
MCP capabilities
- Tools
- Resources
- Prompts
- Sampling
Platforms
Config location
wrangler deploy
Review
Best for teams deploying shared MCP servers without local install friction. If your server needs filesystem access or heavy compute, this won't fit. For stateless API wrappers and lightweight tools, it's the cleanest distribution model available.
Good at
- Zero local dependencies for clients, just an HTTPS endpoint
- Deploy once, use from any machine or MCP client
- Cloudflare's edge network keeps latency reasonable globally
- Simpler config than stdio transport, just a URL
- Good fit for team tooling and shared resources
Watch out
- Workers execution limits: 50ms CPU, 128MB memory, no filesystem
- Cold start latency of 200-300ms on first request
- Overkill for solo tinkering or local-only workflows
- No support for prompts or sampling capabilities
- Requires familiarity with Wrangler and Workers model