Cloudflare & infrastructure
Cloudflare Workers, Pages, storage, agents, email, and the wrangler CLI — the stack our custom MCP connectors and this hub run on. Click any skill for its full guide with 20 Melinda Maria examples.
cloudflareCloudflare PlatformClaude Code only
The all-in-one playbook for building on Cloudflare — Workers (code that runs on Cloudflare’s edge), Pages (hosting), and storage like KV/D1/R2. This is the platform every one of our custom MCP connectors and this onboarding hub actually run on.
e.g. "Our canto-mcp Worker is returning 500s after I added a new tool — walk through the wrangler config, the D1 binding, and the route handler and tell me exactly what’s misconfigured."
agents-sdkCloudflare Agents SDKClaude Code only
How to build AI agents and MCP servers on Cloudflare Workers using the Agents SDK — the same family of tooling our connectors are built with (an MCP server is the “connector” that lets Claude talk to a tool like Canto or LoudCrowd).
e.g. "I want a brand-new MCP connector for a tool we use — scaffold the McpAgent on Cloudflare Workers the same way our canto-mcp connector is built, with read-only tools to start."
durable-objectsDurable ObjectsClaude Code only
A Cloudflare building block for code that needs to remember state and coordinate — think a single source of truth per thing (per user, per room, per job). Some of our connectors lean on this for their data mirror and scheduling.
e.g. "Review the Durable Object that backs our shipbob order-history mirror and check it follows current best practices for storage + alarms."
sandbox-sdkSandbox SDKClaude Code only
Cloudflare’s way to run code safely in an isolated box — for things like a code interpreter or executing untrusted code. Niche for us, but relevant if a future connector ever needs to run generated scripts on demand.
e.g. "Explain whether the Sandbox SDK would be the right tool if we wanted a connector that safely runs a customer-supplied data transformation — with the tradeoffs in plain English."
cloudflare-email-serviceCloudflare Email ServiceClaude Code only
Send and receive transactional email straight from Cloudflare Workers — the “your order shipped” kind of automated email, plus the SPF/DKIM/DMARC setup that keeps it out of spam. A building block if we ever want a connector or Worker to email on its own.
e.g. "If we wanted an internal Worker to email #ops a daily “low inventory” alert built from ShipHero data, show me how to send that email from Cloudflare — and whether Gmail would be simpler."
workers-best-practicesWorkers Best PracticesClaude Code only
A reviewer + author for Cloudflare Workers code — it catches the classic mistakes (leaking secrets, blocking on huge responses, bad global state) that can quietly break or slow a connector.
e.g. "Do a best-practices pass on the nuorder connector Worker before I deploy — flag any secrets, blocking calls, or missing observability."
wranglerWrangler CLIClaude Code only
Wrangler is Cloudflare’s command-line tool — the thing you actually type to deploy, preview, and manage a Worker. It’s the exact tool David uses to push updates to this hub and to our connectors.
e.g. "Give me the exact wrangler command to deploy the onboarding hub from mm-onboarding-site/ and confirm it went live."