TL;DR
- Use when: Verifying an image exists, resolving tag to UUID
- Returns: Image UUID, tag, creation time
- Cost: No VM needed
Parameters
Response
Examples
By UUID
By Tag
See Also
- list_images - List all images
- set_tag - Assign a tag
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 |
|---|---|---|---|---|
image | string | Yes | - | Image UUID or tag:name |
{
"uuid": "abc123-def456-...",
"tag": "python:3.11",
"created_at": "2024-01-15T10:30:00Z"
}
{"tool": "get_image", "args": {"image": "abc123-def456-..."}}
{"tool": "get_image", "args": {"image": "tag:python:3.11"}}
Was this page helpful?