Infra Execution Layer

The infrastructure execution layer for autonomous software engineers. Agents request outcomes — "deploy a production web application" — and receive verified infrastructure on their own cloud account, paid via microtransactions. Infrastructure is an implementation detail.

MCP (Streamable HTTP) REST API Free sandbox XRP + Stripe top-ups

1. Connect (MCP)

Point any MCP client at the remote endpoint. Initialize and list tools without a token; tool calls require one (self-serve, free sandbox).

$ # OpenCode / Claude Code — opencode.json / claude_desktop_config.json
{
  "mcp": {
    "infra-execution-layer": {
      "type": "remote",
      "url": "https://api.intent-infra.com/mcp",
      "headers": { "Authorization": "Bearer <token>" }
    }
  }
}

2. Get a token (self-serve, free)

$ curl -X POST https://api.intent-infra.com/auth/tokens \
    -H 'content-type: application/json' \
    -d '{"agentId": "my-agent", "scopes": []}'

3. Sandbox flow (no AWS account, no payment)

$ # Free sandbox credits (demo mode only)
$ curl -X POST https://api.intent-infra.com/api/v1/billing/topup/sandbox \
    -H 'content-type: application/json' -d '{"amountUsd": 25}'
$ # Quote (est. monthly provider cost, display only)
$ curl -X POST https://api.intent-infra.com/api/v1/quote -H 'Authorization: Bearer <token>' \
    -H 'content-type: application/json' \
    -d '{"outcome": "deploy a production web application", "region": "us-east-1", "tier": "starter"}'
$ # Deploy (fee held from balance, captured only after verification passes)
$ curl -X POST https://api.intent-infra.com/api/v1/deployments -H 'Authorization: Bearer <token>' \
    -H 'content-type: application/json' -d '{"quoteId": "<quoteId>"}'

Pricing (platform fees)

InteractionPrice
Suggestions, pricing estimates, balance, destroyfree
Quote$0.01
Deployment status / list$0.001
Deployment (captured on success; failed = free)$5.00
Sandbox (demo mode)free

Provider costs bill to your own cloud account — the platform never absorbs cloud fees. Quotes display provider estimates for transparency only.

Machine-readable surfaces

$ curl https://api.intent-infra.com/llms.txt
$ curl https://api.intent-infra.com/.well-known/agent.json
$ curl https://api.intent-infra.com/openapi.json
$ curl https://api.intent-infra.com/api/v1/capabilities

Status: /health · Support: escalation contact in error payloads.