Developers

Build with AfterLaunch

The AfterLaunch API and MCP server let AI agents and software read a product run's ranked growth moves, automated loops and drafted outputs, and act on them.

The API is in a private preview. Access is admin-only today; keys open up with the Founder plan at launch.

Quickstart

  1. Create your account and mint a key. Run the free Growth Snapshot to enrol your product, then open Settings and create a read-only API key under API access. The key is shown once; store it securely.
  2. Connect over MCP or plain HTTPS. Every request carries the key as a bearer token (Authorization: Bearer al_...). From Claude Code:
    claude mcp add afterlaunch --transport http https://afterlaunch.io/api/mcp --header "Authorization: Bearer al_..."
    Or read the Feed directly:
    curl -H "Authorization: Bearer al_..." https://afterlaunch.io/api/v1/feed
  3. Read, then act. A read-scoped key reads the ranked Feed of prepared growth moves, the automated loops and their autonomy, the enrollment summary and drafted outputs. Keys carrying the write or config scopes can also ship, skip or redraft moves, trigger a loop run and set loop autonomy; those scopes are not self-serve yet.

Endpoints and tools

This reference is generated from the same action registry that produces the OpenAPI document and the MCP tool list, so it always matches the shipped API. Metered actions can cause a per-call charge and are subject to the per-tenant daily spend cap.

EndpointScopeWhat it doesMCP tool
GET /api/v1/feedreadThe ranked backlog of prepared growth moves.list_feed
GET /api/v1/loopsreadThe automated loops on the enrollment and their autonomy.get_loop_status
GET /api/v1/loops/{loopType}readThe automated loops on the enrollment and their autonomy.get_loop_status
GET /api/v1/enrollmentreadThe product-run summary and delivery settings.get_enrollment
GET /api/v1/outputs/{id}readA single drafted output by id.REST only
POST /api/v1/moves/{id}/shipwriteMark a move shipped (the founder's Ship action).ship_move
POST /api/v1/moves/{id}/skipwriteDismiss a move (the founder's Skip action).skip_move
POST /api/v1/moves/{id}/draftwriteReplace a pending move's draft body before shipping.update_draft
POST /api/v1/loops/{loopType}/runwriteMeteredRun a loop's generation once, on demand (metered).run_loop
POST /api/v1/loops/{loopType}/autonomyconfigSet a loop's autonomy rung.set_loop_autonomy
POST /api/v1/outputs/{id}/approvewriteMeteredApprove one drafted output for dispatch (metered egress).REST only
POST /api/v1/onboard/startwriteAgent-initiated onboarding: submit a founder URL + email; the founder approves by email.REST only
POST /api/v1/onboard/pollwriteAgent-initiated onboarding: exchange the device code for the minted API key (exactly once).REST only

MCP also exposes whoami as a handshake convenience with no REST endpoint: it confirms the key works and reports what it is bound to.

Machine-readable docs

Everything an agent needs to self-wire, served from stable public URLs:

Agent-driven onboarding

An AI agent can set AfterLaunch up for its founder without a browser session. The device flow works like this: the agent submits the founder's site URL and email to POST /api/v1/onboard/start and receives a device code; the founder gets one approval email and nothing runs until they click it; the agent polls POST /api/v1/onboard/poll and, on approval, receives a read-scoped API key exactly once. The founder's free Growth Snapshot and trial start at approval.

This flow is built but not yet open: it sits behind a flag that is off by default while the API is in private preview.

Start with the free Growth Snapshot, then mint a key in Settings.

See what AfterLaunch does