get_related_documents
Locate relevant documents and implementation guidance for a specific topic or standard using the IIA-MCP Server, ensuring accurate audit compliance and resource access.
Instructions
Find documents related to a specific topic or standard
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeGuidance | No | Include implementation guidance documents | |
topic | Yes | Topic or standard to find related documents for |
Input Schema (JSON Schema)
{
"properties": {
"includeGuidance": {
"default": true,
"description": "Include implementation guidance documents",
"type": "boolean"
},
"topic": {
"description": "Topic or standard to find related documents for",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}