// Quickstart · free local tier

A working Cloudflare app in three commands.

No login, no Cloudflare account, no MCP setup. Generate a working booking app from inspectable modules, run it locally, then drive it from your terminal — or hand the same commands to your agent.

Prerequisites: Node ≥ 20 · pnpm, npm, or bun · a terminal. That's it.

  1. 1

    Scaffold from inspectable modules

    Generates a working Cloudflare SvelteKit booking app composed from the Customer, Booking, and Email modules — source-visible, pinned in microservices.lock.json.

    pnpm create microservices-app@latest studio-booking --template booking-sveltekit
  2. 2

    Install and run it locally

    Runs against local D1. No login, no Cloudflare account, no MCP setup required for the first app.

    cd studio-booking && pnpm install && pnpm dev
  3. 3

    Add a module, then check it

    --plan shows exactly what an addition changes before it runs. check returns agent-readable failures before any deploy.

    pnpm microservices add payment --plan && pnpm microservices check

What you get

A real app, not a snippet.

Prefer agents? The same SDK runs over the MCP server — your agent calls list_modules, inspect_module, compose_app, and run_checks with the same results.

Next

Where to go from here.