/** * Single-source-of-truth assembly for the MCP registry. * * Lives in its own file so both the runtime server and the offline * `scai mcp tools list / schema` inspector commands share the same * registration order — without needing a live `McpContext`. * * The inspector commands instantiate a registry from this helper, then * walk the descriptors directly; no SDK wiring required. */ import { McpRegistry } from "./registry.js"; export declare const buildScaiMcpRegistry: () => McpRegistry;