Cloudflare MCP Server
MCP ServerFreeManage Cloudflare Workers, KV, R2, and DNS via MCP.
Capabilities15 decomposed
mcp-compliant tool exposure via http streaming transport
Medium confidenceExposes Cloudflare platform capabilities as standardized MCP tools through HTTP streaming at /mcp endpoint using streamble-http transport, enabling LLM clients to discover and invoke functions with structured JSON-RPC 2.0 messaging. Each of 15+ specialized servers implements the MCP specification with tool schemas, prompts, and resources that clients can introspect before execution.
Official Cloudflare implementation using streamble-http transport for HTTP streaming instead of SSE, providing lower latency and better compatibility with modern LLM platforms; monorepo architecture with 15+ specialized servers allows granular tool exposure per service domain rather than monolithic endpoint
More standardized and maintainable than custom REST API wrappers because it uses MCP specification with automatic tool discovery, and more performant than SSE-based alternatives due to HTTP streaming transport
dual-mode authentication with oauth 2.0 and api token support
Medium confidenceImplements both OAuth 2.0 flow for user-based access and API token mode for programmatic access, with shared authentication infrastructure (@repo/mcp-common package) handling credential validation, token refresh, and user state management across all 15+ MCP servers. Each server validates incoming requests against Cloudflare's identity system before exposing tools.
Shared @repo/mcp-common authentication package provides unified credential handling across heterogeneous MCP servers (Workers Observability, AI Gateway, DEX Analysis, etc.), enabling consistent user state management and token validation without duplicating auth logic in each server
More flexible than single-mode authentication because it supports both interactive OAuth and programmatic tokens, and more secure than embedding tokens in client code because it validates credentials server-side with Cloudflare's identity system
monorepo-based mcp server development framework with shared infrastructure
Medium confidenceProvides a pnpm workspace-based monorepo structure with shared packages (@repo/mcp-common for auth, @repo/mcp-observability for metrics, @repo/eval-tools for testing) that enable rapid development of new MCP servers. Framework includes Turbo for build orchestration, Vitest for testing, and standardized deployment patterns via Cloudflare Workers, reducing boilerplate and ensuring consistency across 15+ servers.
Monorepo with shared @repo/mcp-common, @repo/mcp-observability, and @repo/eval-tools packages eliminates authentication and observability boilerplate across 15+ servers; Turbo orchestration enables parallel builds and incremental deployments
More maintainable than standalone MCP servers because shared packages enforce consistency, and faster to develop because authentication and observability are pre-built
dex analysis and browser rendering orchestration
Medium confidenceProvides MCP tools for analyzing Cloudflare's DEX (Digital Experience) metrics and orchestrating browser rendering tasks. Tools enable LLM agents to query synthetic monitoring data, trigger on-demand page renders, and analyze Core Web Vitals metrics, with integration to Cloudflare's browser rendering infrastructure for headless screenshot and PDF generation.
Dedicated DEX Analysis Server combines synthetic monitoring with on-demand browser rendering, enabling LLM agents to correlate performance metrics with visual rendering; integrates Cloudflare's global browser infrastructure for distributed rendering
More actionable than metrics-only monitoring because it includes visual rendering context, and more efficient than maintaining separate monitoring and rendering systems because both are exposed through unified MCP interface
audit logs and security event querying
Medium confidenceExposes Cloudflare Audit Logs through MCP tools that enable LLM agents to query security events, user actions, and API calls across accounts and zones. Tools provide structured access to audit trails with filtering by action type, actor, resource, and timestamp, enabling agents to detect anomalies, generate compliance reports, and trigger security responses.
Audit Logs Server exposes Cloudflare's comprehensive audit trail through MCP tools, enabling LLM agents to perform security analysis without direct log access; integrates with Logpush for extended retention and compliance archival
More comprehensive than application-level logging because it captures all account and zone-level changes, and more actionable than raw logs because MCP tools provide structured queries and aggregation
logpush configuration and log export automation
Medium confidenceProvides MCP tools for configuring Logpush jobs that export Cloudflare logs to external destinations (S3, GCS, Datadog, Splunk, etc.), managing log retention policies, and querying export status. Tools enable LLM agents to automate log pipeline setup without manual configuration, with support for filtering, sampling, and custom field selection.
Logpush Server abstracts destination-specific configuration behind MCP tools, enabling LLM agents to set up log pipelines to multiple SIEM systems without learning each system's API; integrates with Cloudflare's log filtering and sampling for efficient export
More flexible than manual Logpush configuration because LLM agents can dynamically adjust export rules, and more reliable than custom log collection because Cloudflare manages delivery guarantees
documentation search and context injection for llm prompts
Medium confidenceProvides MCP tools that search Cloudflare's documentation using semantic search (powered by Vectorize embeddings) and inject relevant documentation snippets into LLM prompts. Tools enable agents to ground responses in official documentation, reducing hallucinations and ensuring accuracy when answering questions about Cloudflare features.
Documentation Search Server uses Vectorize embeddings for semantic search over Cloudflare docs, enabling LLM agents to find relevant information beyond keyword matching; integrates with prompt injection patterns for seamless context augmentation
More accurate than keyword-based search because semantic search understands intent, and more maintainable than manual documentation curation because embeddings automatically adapt to doc changes
workers deployment and lifecycle management via mcp tools
Medium confidenceExposes Cloudflare Workers management capabilities through MCP tools that enable LLM agents to deploy, update, delete, and monitor Worker scripts. The Workers Bindings Server and Workers Observability Server provide separate tool sets for configuration management and runtime observability, with integration to Cloudflare's wrangler deployment pipeline and Durable Objects state management.
Separates Workers Bindings Server (configuration/deployment) from Workers Observability Server (runtime metrics), allowing LLM agents to decouple deployment logic from monitoring concerns; integrates with Durable Objects patterns for stateful edge applications
More comprehensive than direct wrangler CLI automation because it provides both deployment and observability through MCP, and more reliable than shell-based automation because it uses Cloudflare's native APIs with structured error handling
kv namespace and r2 storage management with schema-aware operations
Medium confidenceProvides MCP tools for reading, writing, listing, and deleting data in Cloudflare KV namespaces and R2 buckets, with support for metadata operations, TTL configuration, and batch operations. Tools abstract the underlying REST API calls while preserving Cloudflare's storage semantics (eventual consistency for KV, S3-compatible operations for R2).
Unified MCP tool interface for both KV (key-value) and R2 (object storage) abstracts different consistency models and API semantics, allowing LLM agents to treat edge storage uniformly; TTL and metadata operations expose Cloudflare-specific features not available in generic S3 clients
More edge-optimized than generic S3 clients because it leverages Cloudflare's global KV replication and R2 edge caching, and simpler than managing separate KV and S3 SDKs because MCP tools provide unified interface
d1 database query execution with schema introspection
Medium confidenceExposes D1 (Cloudflare's SQLite-based database) through MCP tools that enable LLM agents to execute SQL queries, inspect table schemas, and manage database connections. Tools handle connection pooling via Durable Objects and provide query result streaming for large result sets, with automatic parameterization to prevent SQL injection.
Integrates D1 connection pooling via Durable Objects pattern, reducing cold-start latency for repeated queries; automatic parameterization and schema introspection enable LLM agents to generate safe, contextual SQL without manual query construction
More secure than exposing raw SQL to LLMs because parameterized queries prevent injection attacks, and more performant than direct REST API calls because connection pooling via Durable Objects eliminates per-query connection overhead
dns record management and analytics querying
Medium confidenceProvides MCP tools for creating, updating, deleting, and listing DNS records across Cloudflare zones, plus querying DNS analytics data from Cloudflare's Analytics Engine. Tools support all DNS record types (A, AAAA, CNAME, MX, TXT, etc.) with TTL and proxy settings, and analytics queries return aggregated metrics (queries, threats blocked, response times) for LLM-driven insights.
Combines DNS record CRUD operations with Analytics Engine querying in unified MCP interface, enabling LLM agents to make data-driven DNS decisions; integrates with Cloudflare's threat intelligence for security-aware DNS automation
More actionable than standalone DNS management because it includes analytics context, and more automated than manual DNS changes because LLM agents can respond to traffic patterns in real-time
workers observability with structured logging and metrics
Medium confidenceExposes Workers runtime observability through MCP tools that query logs, metrics, and traces from Cloudflare's Analytics Engine and Logpush. Tools provide structured access to CPU time, wall-clock time, request counts, error rates, and custom metrics defined in Worker code, with filtering by time range, status code, and custom dimensions.
Dedicated Workers Observability Server separates monitoring concerns from deployment, allowing LLM agents to query observability without triggering deployments; integrates Analytics Engine for structured metrics and Logpush for long-term retention
More comprehensive than log-only monitoring because it includes structured metrics and custom dimensions, and more actionable than raw logs because MCP tools provide aggregated insights suitable for LLM analysis
ai gateway request routing and model fallback orchestration
Medium confidenceExposes Cloudflare AI Gateway capabilities through MCP tools that enable LLM agents to configure request routing policies, model fallbacks, and rate limiting rules. Tools allow dynamic adjustment of routing based on model availability, cost, or latency, with support for A/B testing configurations and request logging for analytics.
Dedicated AI Gateway Server enables LLM agents to manage other LLM routing and fallback logic, creating recursive optimization loops; integrates with Cloudflare's edge infrastructure for sub-100ms routing decisions
More dynamic than static model configuration because LLM agents can adjust routing in real-time based on performance signals, and more cost-effective than always using premium models because agents can route to cheaper alternatives when latency permits
autorag document indexing and retrieval orchestration
Medium confidenceProvides MCP tools for managing AutoRAG pipelines that index documents into Cloudflare Vectorize, configure chunking strategies, and execute semantic search queries. Tools enable LLM agents to build and maintain RAG systems without manual vector database management, with support for multiple embedding models and retrieval strategies.
AutoRAG Server abstracts Vectorize complexity behind MCP tools, enabling LLM agents to manage RAG pipelines without vector database expertise; integrates chunking and embedding strategies for end-to-end document processing
More integrated than manual Vectorize API calls because it handles chunking and embedding orchestration, and more maintainable than custom RAG implementations because Cloudflare manages vector index scaling
durable objects state management and migration
Medium confidenceExposes Cloudflare Durable Objects through MCP tools that enable LLM agents to read/write object state, trigger migrations, and manage object lifecycle. Tools provide transactional state access with conflict-free replicated data type (CRDT) semantics, allowing agents to coordinate distributed state across edge locations without explicit locking.
Exposes Durable Objects CRDT semantics through MCP tools, enabling LLM agents to manage distributed state without explicit locking or consensus protocols; integrates with Cloudflare's global replication for automatic failover
More scalable than centralized databases because state is replicated across edge locations, and more consistent than eventual-consistency systems because Durable Objects provide strong consistency guarantees
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with Cloudflare MCP Server, ranked by overlap. Discovered automatically through the match graph.
Neon MCP Server
Manage Neon serverless Postgres databases and branches via MCP.
mcp-remote
Remote proxy for Model Context Protocol, allowing local-only clients to connect to remote servers using oAuth
Token Metrics
** - [Token Metrics](https://www.tokenmetrics.com/) integration for fetching real-time crypto market data, trading signals, price predictions, and advanced analytics.
fastmcp
The fast, Pythonic way to build MCP servers and clients.
5ire
5ire is a cross-platform desktop AI assistant, MCP client. It compatible with major service providers, supports local knowledge base and tools via model context protocol servers .
example-remote-server
A hosted version of the Everything server - for demonstration and testing purposes, hosted at https://example-server.modelcontextprotocol.io/mcp
Best For
- ✓LLM application developers building agents that manage Cloudflare infrastructure
- ✓Teams standardizing on MCP for multi-service AI orchestration
- ✓Enterprises requiring protocol-level interoperability between AI systems and edge platforms
- ✓Teams building both interactive and programmatic AI interfaces to Cloudflare
- ✓Enterprises requiring fine-grained access control and audit trails per user
- ✓Developers migrating from direct API token usage to standardized MCP authentication
- ✓Cloudflare teams extending the MCP server ecosystem with new services
- ✓Developers building custom MCP servers on top of Cloudflare infrastructure
Known Limitations
- ⚠Deprecated SSE transport (/sse endpoint) no longer recommended; migration to streamble-http required for new integrations
- ⚠Tool discovery latency depends on server response time; no client-side caching of schema definitions
- ⚠MCP protocol overhead adds ~50-100ms per tool invocation compared to direct REST API calls
- ⚠OAuth 2.0 flow requires user interaction for initial consent; not suitable for fully automated workflows without pre-authorized tokens
- ⚠API token mode does not support granular scoping per MCP server; token grants access to all exposed tools
- ⚠User state management relies on session storage; no built-in token rotation or expiration enforcement at MCP layer
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
About
Official Cloudflare MCP server for edge platform management. Provides tools for managing Workers, KV namespaces, R2 storage, D1 databases, and DNS records via the Cloudflare API.
Categories
Alternatives to Cloudflare MCP Server
Are you the builder of Cloudflare MCP Server?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →