| name | tooluse-builder |
| description | Discover the container builder API via its tool-use schema. |
Discovering the Builder API
The container builder server exposes a tool-use schema describing each operation as a tool with name, description, HTTP endpoint, and input schema. Fetch it:
curl -s "$BUILDER_URL/tools.json" | python3 -m json.tool
Each tool definition tells you:
name — what the tool does
endpoint — the HTTP path to call
method — GET or POST
input_schema — the JSON body schema (for POST requests)
Use this to construct your API calls. All authenticated endpoints require:
Authorization: Bearer $API_TOKEN