/** * WHOOSH Tools * * Defines MCP tools that expose WHOOSH operations to AI assistants */ import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { WHOOSHClient } from './whoosh-client.js'; export declare class WHOOSHTools { private whooshClient; constructor(whooshClient: WHOOSHClient); getAllTools(): Tool[]; executeTool(name: string, args: Record): Promise; private getAgents; private registerAgent; private createTask; private getTask; private getTasks; private getWorkflows; private createWorkflow; private executeWorkflow; private getClusterStatus; private getMetrics; private getExecutions; private coordinateDevelopment; private bringWHOOSHOnline; private registerCliAgent; private getCliAgents; private registerPredefinedCliAgents; } //# sourceMappingURL=whoosh-tools.d.ts.map