IaC Memory MCP Server

get_module_version_compatibility

Check module compatibility across collection versions

Input Schema

NameRequiredDescriptionDefault
collection_nameYesName of the Ansible collection
module_nameYesName of the module to check
versionYesTarget collection version to check compatibility against

Input Schema (JSON Schema)

{ "description": "Check module compatibility across collection versions", "properties": { "collection_name": { "description": "Name of the Ansible collection", "type": "string" }, "module_name": { "description": "Name of the module to check", "type": "string" }, "version": { "description": "Target collection version to check compatibility against", "type": "string" } }, "required": [ "collection_name", "module_name", "version" ], "type": "object" }