Start free →

MCP-native · zero config · <15s deploys

Deploy your
Agent's app.
Not your agent.

The deploy platform built for AI agents. One API call. Live URL. Structured errors your agent can fix itself.

$ curl -X POST api.shipyards.run/deploy --data @app.tar.gz

→ {"url": "https://your-app-4f2a.shipyards.run", "status": "live"}

01

Zero config

Auto-detects framework, runtime, port, and build command. No config files ever required.

02

Structured errors

Machine-readable failures with phase, type, and fix suggestion. Agents self-heal in seconds.

03

Ephemeral previews

Every deploy is a preview by default. Auto-expires. Promote to production with one API call.

04

MCP-native

Ships with an MCP server. Claude, Cursor, and Windsurf can deploy out of the box.

Agents don't read
stack traces.

Every failure returns a machine-readable object. Your agent reads the fix suggestion and retries — no human in the loop.

// POST /deploy → 422

{
  "status": "failed",
  "phase": "build",
  "type": "missing_start_script",
  "fix": "Add \"start\" to package.json"
}

How It Works

From code to live URL
in under 15 seconds.

1

Agent sends code

POST /deploy with tarball or git

2

Auto-detect & build

Nixpacks detects runtime, builds container in sandbox

3

Deploy & route

Container starts in <5s, HTTPS URL assigned

4

Feedback loop

Success — live URL returned. Failure — structured error JSON.