DevOps & Infra
cloudflare - Claude MCP Skill
Comprehensive Cloudflare platform skill covering Workers, Pages, storage (KV, D1, R2), AI (Workers AI, Vectorize, Agents SDK), networking (Tunnel, Spectrum), security (WAF, DDoS), and infrastructure-as-code (Terraform, Pulumi). Use for any Cloudflare development task.
SEO Guide: Enhance your AI agent with the cloudflare tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to comprehensive cloudflare platform skill covering workers, pages, storage (kv, d1, r2), ai (workers a... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# Cloudflare Platform Skill Consolidated skill for building on the Cloudflare platform. Use decision trees below to find the right product, then load detailed references. Your knowledge of Cloudflare APIs, types, limits, and pricing may be outdated. **Prefer retrieval over pre-training** ā the references in this skill are starting points, not source of truth. ## Retrieval Sources Fetch the **latest** information before citing specific numbers, API signatures, or configuration options. Do not rely on baked-in knowledge or these reference files alone. | Source | How to retrieve | Use for | |--------|----------------|---------| | Cloudflare docs | `cloudflare-docs` search tool or `https://developers.cloudflare.com/` | Limits, pricing, API reference, compatibility dates/flags | | Workers types | `npm pack @cloudflare/workers-types` or check `node_modules` | Type signatures, binding shapes, handler types | | Wrangler config schema | `node_modules/wrangler/config-schema.json` | Config fields, binding shapes, allowed values | | Product changelogs | `https://developers.cloudflare.com/changelog/` | Recent changes to limits, features, deprecations | When a reference file and the docs disagree, **trust the docs**. This is especially important for: numeric limits, pricing tiers, type signatures, and configuration options. ## Quick Decision Trees ### "I need to run code" ``` Need to run code? āā Serverless functions at the edge ā workers/ āā Full-stack web app with Git deploys ā pages/ āā Stateful coordination/real-time ā durable-objects/ āā Long-running multi-step jobs ā workflows/ āā Run containers ā containers/ āā Multi-tenant (customers deploy code) ā workers-for-platforms/ āā Scheduled tasks (cron) ā cron-triggers/ āā Lightweight edge logic (modify HTTP) ā snippets/ āā Process Worker execution events (logs/observability) ā tail-workers/ āā Optimize latency to backend infrastructure ā smart-placement/ ``` ### "I need to store data" ``` Need storage? āā Key-value (config, sessions, cache) ā kv/ āā Relational SQL ā d1/ (SQLite) or hyperdrive/ (existing Postgres/MySQL) āā Object/file storage (S3-compatible) ā r2/ āā Message queue (async processing) ā queues/ āā Vector embeddings (AI/semantic search) ā vectorize/ āā Strongly-consistent per-entity state ā durable-objects/ (DO storage) āā Secrets management ā secrets-store/ āā Streaming ETL to R2 ā pipelines/ āā Persistent cache (long-term retention) ā cache-reserve/ ``` ### "I need AI/ML" ``` Need AI? āā Run inference (LLMs, embeddings, images) ā workers-ai/ āā Vector database for RAG/search ā vectorize/ āā Build stateful AI agents ā agents-sdk/ āā Gateway for any AI provider (caching, routing) ā ai-gateway/ āā AI-powered search widget ā ai-search/ ``` ### "I need networking/connectivity" ``` Need networking? āā Expose local service to internet ā tunnel/ āā TCP/UDP proxy (non-HTTP) ā spectrum/ āā WebRTC TURN server ā turn/ āā Private network connectivity ā network-interconnect/ āā Optimize routing ā argo-smart-routing/ āā Optimize latency to backend (not user) ā smart-placement/ āā Real-time video/audio ā realtimekit/ or realtime-sfu/ ``` ### "I need security" ``` Need security? āā Web Application Firewall ā waf/ āā DDoS protection ā ddos/ āā Bot detection/management ā bot-management/ āā API protection ā api-shield/ āā CAPTCHA alternative ā turnstile/ āā Credential leak detection ā waf/ (managed ruleset) ``` ### "I need media/content" ``` Need media? āā Image optimization/transformation ā images/ āā Video streaming/encoding ā stream/ āā Browser automation/screenshots ā browser-rendering/ āā Third-party script management ā zaraz/ ``` ### "I need analytics/metrics data" ``` Need analytics? āā Query across all Cloudflare products (HTTP, Workers, DNS, etc.) ā graphql-api/ āā Custom high-cardinality metrics from Workers ā analytics-engine/ āā Client-side (RUM) performance data ā web-analytics/ āā Workers Logs and real-time debugging ā observability/ āā Raw logs (Logpush to external tools) ā Cloudflare docs ``` ### "I need infrastructure-as-code" ``` Need IaC? ā pulumi/ (Pulumi), terraform/ (Terraform), or api/ (REST API) ``` ## Product Index ### Compute & Runtime | Product | Reference | |---------|-----------| | Workers | `references/workers/` | | Pages | `references/pages/` | | Pages Functions | `references/pages-functions/` | | Durable Objects | `references/durable-objects/` | | Workflows | `references/workflows/` | | Containers | `references/containers/` | | Workers for Platforms | `references/workers-for-platforms/` | | Cron Triggers | `references/cron-triggers/` | | Tail Workers | `references/tail-workers/` | | Snippets | `references/snippets/` | | Smart Placement | `references/smart-placement/` | ### Storage & Data | Product | Reference | |---------|-----------| | KV | `references/kv/` | | D1 | `references/d1/` | | R2 | `references/r2/` | | Queues | `references/queues/` | | Hyperdrive | `references/hyperdrive/` | | DO Storage | `references/do-storage/` | | Secrets Store | `references/secrets-store/` | | Pipelines | `references/pipelines/` | | R2 Data Catalog | `references/r2-data-catalog/` | | R2 SQL | `references/r2-sql/` | ### AI & Machine Learning | Product | Reference | |---------|-----------| | Workers AI | `references/workers-ai/` | | Vectorize | `references/vectorize/` | | Agents SDK | `references/agents-sdk/` | | AI Gateway | `references/ai-gateway/` | | AI Search | `references/ai-search/` | ### Networking & Connectivity | Product | Reference | |---------|-----------| | Tunnel | `references/tunnel/` | | Spectrum | `references/spectrum/` | | TURN | `references/turn/` | | Network Interconnect | `references/network-interconnect/` | | Argo Smart Routing | `references/argo-smart-routing/` | | Workers VPC | `references/workers-vpc/` | ### Security | Product | Reference | |---------|-----------| | WAF | `references/waf/` | | DDoS Protection | `references/ddos/` | | Bot Management | `references/bot-management/` | | API Shield | `references/api-shield/` | | Turnstile | `references/turnstile/` | ### Media & Content | Product | Reference | |---------|-----------| | Images | `references/images/` | | Stream | `references/stream/` | | Browser Rendering | `references/browser-rendering/` | | Zaraz | `references/zaraz/` | ### Real-Time Communication | Product | Reference | |---------|-----------| | RealtimeKit | `references/realtimekit/` | | Realtime SFU | `references/realtime-sfu/` | ### Developer Tools | Product | Reference | |---------|-----------| | Wrangler | `references/wrangler/` | | Miniflare | `references/miniflare/` | | C3 | `references/c3/` | | Observability | `references/observability/` | | GraphQL Analytics API | `references/graphql-api/` | | Analytics Engine | `references/analytics-engine/` | | Web Analytics | `references/web-analytics/` | | Sandbox | `references/sandbox/` | | Workerd | `references/workerd/` | | Workers Playground | `references/workers-playground/` | ### Infrastructure as Code | Product | Reference | |---------|-----------| | Pulumi | `references/pulumi/` | | Terraform | `references/terraform/` | | API | `references/api/` | ### Other Services | Product | Reference | |---------|-----------| | Email Routing | `references/email-routing/` | | Email Workers | `references/email-workers/` | | Static Assets | `references/static-assets/` | | Bindings | `references/bindings/` | | Cache Reserve | `references/cache-reserve/` |
Signals
Information
- Repository
- cloudflare/cloudflare-docs
- Author
- cloudflare
- Last Sync
- 3/3/2026
- Repo Updated
- 3/3/2026
- Created
- 2/6/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
upgrade-nodejs
Upgrading Bun's Self-Reported Node.js Version
cursorrules
CrewAI Development Rules
cn-check
Install and run the Continue CLI (`cn`) to execute AI agent checks on local code changes. Use when asked to "run checks", "lint with AI", "review my changes with cn", or set up Continue CI locally.
CLAUDE
CLAUDE.md
Related Guides
Bear Notes Claude Skill: Your AI-Powered Note-Taking Assistant
Learn how to use the bear-notes Claude skill. Complete guide with installation instructions and examples.
Mastering tmux with Claude: A Complete Guide to the tmux Claude Skill
Learn how to use the tmux Claude skill. Complete guide with installation instructions and examples.
OpenAI Whisper API Claude Skill: Complete Guide to AI-Powered Audio Transcription
Learn how to use the openai-whisper-api Claude skill. Complete guide with installation instructions and examples.