IaC Memory MCP Server

add_ansible_collection

Add a new Ansible collection to the memory store with version and documentation information

Input Schema

NameRequiredDescriptionDefault
doc_urlYesDocumentation URL
nameYesCollection name
source_urlYesSource repository URL
versionYesCollection version

Input Schema (JSON Schema)

{ "description": "Add a new Ansible collection to the memory store with version and documentation information", "properties": { "doc_url": { "description": "Documentation URL", "type": "string" }, "name": { "description": "Collection name", "type": "string" }, "source_url": { "description": "Source repository URL", "type": "string" }, "version": { "description": "Collection version", "type": "string" } }, "required": [ "name", "version", "source_url", "doc_url" ], "type": "object" }