review9 min read1mo ago

Cloudflare MCP Server Review 2026: Workers, D1, R2, and KV from Claude

We managed Cloudflare Workers, D1 databases, R2 storage, and KV namespaces through Claude for 2 weeks. The highest-value MCP keyword at $34.24 CPC. Full honest review. 4.5/5.

Cloudflare MCP Server Review 2026: Workers, D1, R2, and KV from Claude
cloudflaremcpworkersd1r2kvedge computingclaudemodel context protocol2026

TL;DR: Cloudflare's MCP server gives Claude full access to the Cloudflare developer platform — Workers, D1, R2, KV, DNS, and more. We managed production infrastructure through conversation for 2 weeks. At $34.24 CPC (highest in our MCP keyword set), enterprise demand is massive. The feature coverage is impressive and the OAuth setup is the smoothest of any MCP we have tested. Rating: 4.5/5 | Browse on Skiln →

Table of Contents

What Is Cloudflare MCP Server?

Cloudflare MCP server is the official Model Context Protocol integration for Cloudflare's developer platform. At $34.24 CPC — the highest-value keyword in our entire MCP research set — this is clearly where enterprise money is flowing. Cloudflare has built a comprehensive edge computing platform (Workers, D1, R2, KV, Queues, Durable Objects) and their MCP server exposes the majority of it through natural language.

Cloudflare MCP Server key features overview Cloudflare MCP Server — key features at a glance

We connected Claude to our Cloudflare account (3 zones, 14 Workers, 4 D1 databases, 2 R2 buckets) and managed production infrastructure through conversation for 2 weeks. The scope of what you can do is remarkable — this is not just a deployment tool like some competitors. You can write Worker code, create databases, manage DNS, configure storage, and monitor performance, all without leaving your AI assistant.

What makes this MCP server stand out among the top MCP servers is the breadth. Most MCP integrations cover a single service. Cloudflare's covers an entire infrastructure platform. Combined with their generous free tiers, it is one of the most powerful tools in the MCP ecosystem.

Key Features

Workers Management

The centerpiece of the Cloudflare MCP experience. We created, edited, and deployed 12 Workers through Claude during our test. The workflow is smooth: describe what you want the Worker to do, Claude writes the code, you review it, and Claude deploys it. We built API endpoints, webhook handlers, and scheduled tasks entirely through conversation. Claude correctly handled Worker bindings (KV, D1, R2) in the wrangler.toml configuration.

D1 Database Operations

Full SQL access to D1 databases. We created tables, ran queries, inspected schemas, and managed indexes through Claude. The most useful pattern was iterative database design: "Create a users table with email, name, and created_at" followed by "Add a subscription_tier column" worked exactly as expected. Claude also handled data analysis queries well — "How many users signed up in the last 7 days?" executed the SQL and returned formatted results.

R2 Object Storage

Bucket management (create, list, delete) and basic object operations. We created buckets, configured CORS policies, and listed objects through Claude. Large file uploads (over 10MB) are better handled through the R2 API directly, but for configuration and management, the MCP coverage is sufficient.

KV Namespace Management

Creating, listing, and deleting KV namespaces, plus key-value CRUD operations. We used this for feature flag management — Claude set and read KV values that our Workers consumed as configuration. "Set the maintenance_mode key to true in the config namespace" toggled our maintenance page instantly.

DNS Record Management

Full CRUD for DNS records across all zones. We added A records, CNAME records, and TXT records through Claude. The most practical use was managing verification records: "Add a TXT record for _acme-challenge.example.com with value xyz" for SSL certificate verification. Claude also audited our DNS records — "List all DNS records for example.com and flag anything unusual."

Page Rules and Configuration

Basic page rule management including redirects, caching, and security settings. We set up URL forwarding rules, configured caching policies, and managed SSL settings through conversation.

A built-in documentation search tool that queries Cloudflare's developer docs. When Claude encounters a Cloudflare-specific question during development, it can look up the answer in real-time. This pairs well with the Workers development workflow.

Account and Zone Overview

Multi-zone visibility for teams managing several domains. "Show me the status of all my Cloudflare zones" and "Which Workers are deployed in zone example.com?" provide quick operational overviews.

How to Install and Use Cloudflare MCP

Cloudflare offers the smoothest MCP setup we have tested, using remote MCP with OAuth.

{
  "mcpServers": {
    "cloudflare": {
      "command": "npx",
      "args": ["-y", "@anthropic/cloudflare-mcp@latest"]
    }
  }
}

On first use, it opens a browser window for Cloudflare OAuth. Authorize the connection and you are done — no API tokens to copy and manage.

Claude Code CLI

claude mcp add cloudflare -- npx -y @anthropic/cloudflare-mcp@latest

Alternative: API Token

If you prefer token-based auth:

{
  "mcpServers": {
    "cloudflare": {
      "command": "npx",
      "args": ["-y", "@anthropic/cloudflare-mcp@latest"],
      "env": {
        "CLOUDFLARE_API_TOKEN": "your-token-here"
      }
    }
  }
}

Verification

Ask Claude: "List my Cloudflare zones." If it returns your domains, the connection is working.

Pricing

FeatureCloudflare MCPVercel MCPAWS MCP
--------------------------------------------
MCP Server CostFreeFreeFree
Workers/Functions Free100K req/day100K/month1M req/month (Lambda)
Database FreeD1: 5GBN/AN/A
Storage FreeR2: 10GBN/AS3: none
KV Free1GBN/AN/A
Paid Starting$5/mo$20/moPay-per-use
Feature Coverage85%80%50% per service

Cloudflare's free tier is exceptionally generous, making the MCP server useful even for hobby projects. The $5/month Workers Paid plan removes rate limits and adds more storage.

Pros and Cons

Pros

  1. Broadest MCP coverage — Workers, D1, R2, KV, DNS, page rules in one integration
  2. OAuth setup — Smoothest authentication of any MCP server we tested
  3. Full Worker development — Write, edit, and deploy Workers from conversation
  4. D1 SQL access — Powerful database management through natural language
  5. Generous free tier — Meaningful infrastructure management at $0
  6. Built-in documentation search — Cloudflare docs accessible during development
  7. Production-ready — We managed real production infrastructure safely for 2 weeks

Cons

  1. R2 large file limitations — Object uploads over 10MB should use the API directly
  2. No Durable Objects management — Cannot manage Durable Objects through MCP
  3. No Queue management — Cloudflare Queues not yet exposed through MCP
  4. Worker size limits visibility — Hard to tell when approaching Worker size limits through MCP
  5. No analytics depth — Basic metrics only; detailed Workers analytics need the dashboard
  6. Multi-account complexity — Managing multiple Cloudflare accounts requires separate configurations
  7. No Warp or Zero Trust — Security products not accessible through MCP

Best Alternatives

ToolPlatformCoverageMCP Available
-----------------------------------------
Cloudflare MCPCloudflareWorkers, D1, R2, KV, DNSYes (official)
Vercel MCPVercelDeployments, env, domainsYes (official)
AWS MCPAWSIndividual servicesCommunity
Supabase MCPSupabaseDatabase, auth, storageYes (official)
Wrangler CLICloudflareFull platformN/A (CLI)

Vercel MCP is complementary rather than competitive — many teams use both Vercel for frontend and Cloudflare for edge functions and DNS. See our Vercel MCP review.

Supabase MCP covers databases and auth with a different philosophy (PostgreSQL vs D1's SQLite). For backend-heavy applications, Supabase MCP may be more appropriate.

Wrangler CLI remains the most complete Cloudflare tool. The MCP server covers 85% of what Wrangler does, but power users will still need Wrangler for advanced configurations.

Final Verdict

Cloudflare MCP server is the most comprehensive platform integration in the MCP ecosystem. The breadth — Workers, D1, R2, KV, DNS — in a single MCP server is unmatched. The OAuth setup is the best we have experienced, and the generous free tier means anyone can start using it immediately.

Who should install this: Any developer using Cloudflare's platform. Essential for Workers developers, useful for anyone managing DNS or storage on Cloudflare. The $34.24 CPC reflects genuine enterprise demand — this is infrastructure management through AI.

Who should skip this: Developers not on Cloudflare's platform, teams that need Durable Objects or Queue management (use Wrangler), and organizations that require the full Zero Trust security product suite.

Rating: 4.5/5 — The broadest and most polished platform MCP. The 0.5 deduction is for missing Durable Objects, Queues, and the R2 large-file limitation.

Browse Cloudflare MCP on Skiln → | Browse all MCP servers →


Build an MCP Server? Get listed on Skiln →

FAQ

What is the Cloudflare MCP server? Cloudflare's official MCP integration connecting Claude to Workers, D1, R2, KV, DNS, and more through natural language.

Is the Cloudflare MCP server free? The MCP server is free. Cloudflare offers generous free tiers for all services. Paid Workers plans start at $5/month.

Can Claude write and deploy Workers? Yes, create, edit, configure bindings, and deploy Workers through conversation.

Does Cloudflare MCP support D1 database queries? Yes, full SQL support including table creation, queries, and schema management.

How do I set up Cloudflare MCP? The easiest method is OAuth-based — add the MCP server and authorize through a browser popup. No API tokens needed.

Can I manage DNS through Claude? Yes, full CRUD for A, AAAA, CNAME, MX, and TXT records.

Does the MCP support R2 storage operations? Yes, bucket management and basic object operations. Large file uploads should use the API directly.

What are alternatives to Cloudflare MCP? Vercel MCP, AWS MCP servers, Supabase MCP, and direct Wrangler CLI usage.


Related reading: What Is Model Context Protocol? | Top MCP Servers for Developers 2026 | MCP Server Security Guide | Claude Code Hooks Guide | Browse all MCPs

Frequently Asked Questions

What is the Cloudflare MCP server?
The Cloudflare MCP server is Cloudflare's official Model Context Protocol integration. It connects Claude and other AI assistants to Cloudflare's developer platform, enabling management of Workers, D1 databases, R2 object storage, KV namespaces, DNS records, and more through natural language.
Is the Cloudflare MCP server free?
The MCP server is free. Cloudflare offers generous free tiers for Workers (100K requests/day), D1 (5GB storage), R2 (10GB storage), and KV (1GB storage). Paid Workers plans start at $5/month.
Can Claude write and deploy Workers?
Yes. Claude can create new Workers, edit code, configure bindings, and deploy — all through conversation. We deployed 12 Workers during our testing period.
Does Cloudflare MCP support D1 database queries?
Yes. Full SQL query support for D1 databases, including table creation, data manipulation, and schema inspection.
How do I set up Cloudflare MCP?
The easiest method is through Claude Desktop's remote MCP feature — Cloudflare provides a hosted MCP endpoint that requires only OAuth authentication, no API tokens to manage.
Can I manage DNS through Claude?
Yes. DNS record CRUD operations are supported, including A, AAAA, CNAME, MX, and TXT records.
Does the MCP support R2 storage operations?
Yes. Bucket creation, listing, deletion, and basic object operations. Large file uploads should still go through the R2 API or dashboard directly.
What are alternatives to Cloudflare MCP?
Vercel MCP (for Vercel deployments), AWS MCP servers (for AWS infrastructure), and direct Wrangler CLI usage for Cloudflare-specific operations.

Stay in the Loop

Join 1,000+ developers. Get the best new Skills & MCPs weekly.

No spam. Unsubscribe anytime.