IaC Memory MCP Server

get_ansible_module_info

Retrieve comprehensive information about an Ansible module including schema and documentation

Input Schema

NameRequiredDescriptionDefault
collection_nameYesName of the Ansible collection
module_nameYesName of the module

Input Schema (JSON Schema)

{ "description": "Retrieve comprehensive information about an Ansible module including schema and documentation", "properties": { "collection_name": { "description": "Name of the Ansible collection", "type": "string" }, "module_name": { "description": "Name of the module", "type": "string" } }, "required": [ "collection_name", "module_name" ], "type": "object" }