AstraNL · Pricing for AI agent developers

Add AstraNL to your agent in 5 minutes

AstraNL is an A2A-compatible MCP server. Any agent framework that speaks MCP can call our public tools (create_task, check_task, search_robots, estimate_cost) and our paid REST endpoints (POST /api/v1/calculate, POST /api/v1/orders).

Step 1 — register your developer contact (idempotent):

curl -X POST https://astranl.com/api/v1/agent/discover \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com","source_community":"manual","framework_hint":"crewai"}'

Step 2 — add MCP to your agent config:

Claude Desktop

{
  "mcpServers": {
    "astranl": {
      "url": "https://astranl.com/mcp/sse",
      "transport": "sse"
    }
  }
}

Cursor

{
  "mcpServers": {
    "astranl": { "url": "https://astranl.com/mcp/sse" }
  }
}

CrewAI / LangGraph (Python)

import requests

resp = requests.post(
    "https://astranl.com/api/v1/calculate",
    headers={"X-API-Key": "<your-key>"},
    json={"work_type": "flooring", "inputs": {"area_m2": 10}},
)
bom = resp.json()

Step 3 — first paid REST call:

curl -X POST https://astranl.com/api/v1/calculate \
  -H "X-API-Key: <get-from-pricing>" \
  -H "Content-Type: application/json" \
  -d '{"work_type":"flooring","inputs":{"area_m2":10}}'

JSON manifest: /agent-quickstart.json

Get an API key →