IaC Memory MCP Server

update_collection_version

Update an existing Ansible collection's version information and documentation links

Input Schema

NameRequiredDescriptionDefault
collection_idYesCollection ID
new_doc_urlNoNew documentation URL
new_source_urlNoNew source URL
new_versionYesNew version

Input Schema (JSON Schema)

{ "description": "Update an existing Ansible collection's version information and documentation links", "properties": { "collection_id": { "description": "Collection ID", "type": "string" }, "new_doc_url": { "description": "New documentation URL", "type": "string" }, "new_source_url": { "description": "New source URL", "type": "string" }, "new_version": { "description": "New version", "type": "string" } }, "required": [ "collection_id", "new_version" ], "type": "object" }