IaC Memory MCP Server

update_module_version

Update an existing Ansible module's schema and related information

Input Schema

NameRequiredDescriptionDefault
module_idYesModule ID
new_doc_urlNoNew documentation URL
new_schemaYesNew schema
new_versionNoNew version

Input Schema (JSON Schema)

{ "description": "Update an existing Ansible module's schema and related information", "properties": { "module_id": { "description": "Module ID", "type": "string" }, "new_doc_url": { "description": "New documentation URL", "type": "string" }, "new_schema": { "description": "New schema", "type": "string" }, "new_version": { "description": "New version", "type": "string" } }, "required": [ "module_id", "new_schema" ], "type": "object" }