/** * Dynamic container tool generation — creates MCP tools from profile.containers. * * For each managed container type, generates: * - list_{id}s — list all containers of this type * - get_{id}_status — get detailed status of a specific container * - assign_task_to_{id} — assign a task to a container (enforces integrity) * - create_{id} — create a new container (only if namePattern defined) * - validate_{id}_completion — check if a container can complete (only if completionRule !== 'none') */ import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { MethodologyProfile } from '@ido4/core'; export declare function registerContainerTools(server: McpServer, profile: MethodologyProfile): void; //# sourceMappingURL=container-tools.d.ts.map