list_templates
Retrieve and filter templates from the CloudStack MCP Server by type, hypervisor, or zone, enabling efficient management of virtual machine configurations.
Instructions
List templates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hypervisor | No | Hypervisor type | |
templatefilter | Yes | Template filter (featured, self, selfexecutable, sharedexecutable, executable, community) | featured |
zoneid | No | Zone ID to filter templates |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"hypervisor": {
"description": "Hypervisor type",
"type": "string"
},
"templatefilter": {
"default": "featured",
"description": "Template filter (featured, self, selfexecutable, sharedexecutable, executable, community)",
"type": "string"
},
"zoneid": {
"description": "Zone ID to filter templates",
"type": "string"
}
},
"required": [
"templatefilter"
],
"type": "object"
}