MCP Knowledge Retrieval Tools

Overview of Aircada's Model Context Protocol (MCP) tools for dynamic documentation querying and exact node retrieval.
Published: 7/10/2026

Documentation Querying via MCP

Autonomous agents query the central Aircada knowledge base in real time using two dedicated Model Context Protocol (MCP) tools. These tools allow agents to search the entire guide database or fetch exact node contents, keeping their context lean and grounding their decisions.

get_knowledge_nodes_by_ids Tool Reference#

Reference schema and exact retrieval syntax for the getknowledgenodesbyids tool.

Tool Overview

The get_knowledge_nodes_by_ids tool retrieves the complete, raw markdown body and metadata of specific Aircada knowledge nodes using their exact string IDs.

Input Schema

json
{
  "name": "get_knowledge_nodes_by_ids",
  "description": "Retrieve the complete, exact markdown content of specific Aircada knowledge nodes using their string ID. Use this when following a 'Related ID' link.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "nodeIds": {
        "type": "array",
        "items": { "type": "string" },
        "description": "The exact dot-notation ID (e.g., 'element.shape.creation')"
      }
    },
    "required": ["nodeIds"]
  }
}

Fetching Exact Nodes

Use this tool when following related IDs found under the connections or children arrays of other nodes. This avoids duplicate searches and provides the full, unabridged text directly.

json
// Example Tool Call
{
  "nodeIds": ["docs.apex.architecture", "docs.apex.schema"]
}