Tools Reference
Tools Reference
All 18 tools for container execution, file management, and operations.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Tool | Description | Cost |
|---|---|---|
| run | Execute command in container | Spawns microVM |
| Tool | Description | Cost |
|---|---|---|
| import_image | Import from registry | Spawns microVM |
| registry_token_obtain | Open browser for PAT creation | No VM |
| registry_auth | Validate and store credentials | No VM |
| list_images | List available images | No VM |
| get_image | Get image by UUID/tag | No VM |
| set_tag | Set or remove tag | No VM |
| Tool | Description | Cost |
|---|---|---|
| list_files | List files in image | No VM |
| read_file | Read file from image | No VM |
| grep | Search file contents via ripgrep | No VM |
| Tool | Description | Cost |
|---|---|---|
| get_operation | Get operation status | No VM |
| list_operations | List operations | No VM |
| wait_operations | Wait for multiple ops | No VM |
| cancel_operation | Cancel operation | No VM |
| Tool | Description | Cost |
|---|---|---|
| get_guide | Get guide sections | No VM |
{"tool": "run", "args": {"command": "python -c 'print(1)'", "image": "img-uuid"}}
{"tool": "rsync", "args": {"source": "/project", "destination": "/app"}}
{"tool": "run", "args": {"command": "python /app/main.py", "image": "img-uuid", "directory_state_id": "ds-uuid"}}
{"tool": "run", "args": {"command": "test1.py", "image": "img", "wait": false}}
{"tool": "run", "args": {"command": "test2.py", "image": "img", "wait": false}}
{"tool": "wait_operations", "args": {"operation_ids": ["op-1", "op-2"]}}
{"tool": "list_files", "args": {"image": "img-uuid", "path": "/etc"}}
{"tool": "read_file", "args": {"image": "img-uuid", "path": "/etc/os-release"}}
Was this page helpful?