Cloudflare

Deploy and manage Cloudflare Workers, Pages, and services via Code Mode MCP and wrangler.

Updated Jul 10, 2026
One-click install
npx skills add https://github.com/Kaleb-Rupe/aurora --skill cloudflare-kaleb-rupe
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Cloudflare
Source: https://github.com/Kaleb-Rupe/aurora/tree/main/claude/skills/Utilities/Cloudflare
Command: npx skills add https://github.com/Kaleb-Rupe/aurora --skill cloudflare-kaleb-rupe

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Cloudflare infrastructure requires juggling thousands of API endpoints, wrangler CLI quirks, and auth token conflicts that break deployments. This Skill unifies API queries and deployments into guided workflows so you can deploy Workers, query account state, and troubleshoot failures without memorizing endpoints or debugging auth errors. ## Core Features & Use Cases - Dual-Tool Operations: Uses Code Mode MCP (search + execute) for API queries like listing workers, reading KV, and managing DNS, while reserving wrangler for deploys and local dev. - Guided Workflows: Three dedicated workflows cover creating Workers/MCP servers, querying account state (KV, R2, D1, Vectorize, analytics), and troubleshooting failed deployments with log analysis. - Auth Conflict Resolution: Built-in handling for the common failure where CF_API_TOKEN environment variables override OAuth and block Pages deployments. - Use Case: Ask to list all your workers, and the Skill searches the Cloudflare API via MCP, executes the right endpoint, and returns a formatted table — no tokens or manual curl required. ## Quick Start Ask the assistant to deploy your Worker to Cloudflare or list all workers in your account, and the Skill will route to the appropriate workflow automatically.

Frequently Asked Questions about Cloudflare

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a Cloudflare Worker with wrangler?

Run wrangler deploy from your project directory after unsetting CF_API_TOKEN and CLOUDFLARE_API_TOKEN, which otherwise override OAuth login. The Skill then verifies the deployment via MCP by querying the workers scripts endpoint.

How do I list all my Cloudflare Workers and KV namespaces?

Use the Code Mode MCP search tool to find the right endpoint, then execute GET requests against the Cloudflare API, such as /accounts/{account_id}/workers/scripts. No API tokens or manual curl commands are needed since MCP handles OAuth.

Why does my Cloudflare Pages deployment fail with auth errors?

Environment API tokens lack Pages permissions and override wrangler's OAuth login. Unset CF_API_TOKEN and CLOUDFLARE_API_TOKEN before running wrangler pages deploy so OAuth authentication is used instead.

When should I use wrangler versus the Cloudflare MCP server?

Use wrangler only for deploying Workers and Pages or running local dev servers, since those need local files. Use Code Mode MCP for all API operations like listing resources, reading KV values, managing DNS, and viewing analytics.

How do I troubleshoot a failed Cloudflare deployment?

Query deployment status and logs through MCP execute calls, check DNS records and worker routes, then verify the live site with a browser. Fix the root cause locally, test with wrangler dev, and redeploy.