TL;DR
- Use when: Finding operation IDs, monitoring
- Returns: List of operations with status
- Cost: No VM needed
Parameters
Response
Examples
List Running
List by Kind
See Also
- get_operation - Get single operation
- cancel_operation - Cancel operation
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
limit | integer | No | 100 | Max operations to return |
status | string | No | null | Filter by status |
kind | string | No | null | Filter by kind |
since | string | No | null | Created after |
{
"operations": [
{
"uuid": "op-abc123",
"kind": "instance",
"state": "SUCCESS",
"created_at": "2024-01-15T10:30:00Z"
}
]
}
{"tool": "list_operations", "args": {"status": "running"}}
{"tool": "list_operations", "args": {"kind": "image_import"}}
Was this page helpful?