ai-debug-local-mcp
Version:
🎯 ENHANCED AI GUIDANCE v4.1.2: Dramatically improved tool descriptions help AI users choose the right tools instead of 'close enough' options. Ultra-fast keyboard automation (10x speed), universal recording, multi-ecosystem debugging support, and compreh
40 lines • 1.1 kB
TypeScript
/**
* MCP Tool Definitions for Orchestrators
*
* These are the ONLY tools exposed to the main LLM.
* All 279 existing tools are hidden behind these orchestrators.
*/
import { Tool } from '@modelcontextprotocol/sdk/types.js';
export declare const ORCHESTRATOR_TOOLS: Tool[];
export declare const SUB_AGENTS: {
frontend_debug_agent: {
tools: string[];
capabilities: string[];
};
backend_debug_agent: {
tools: string[];
capabilities: string[];
};
error_investigation_agent: {
tools: string[];
capabilities: string[];
};
metrics_collection_agent: {
tools: string[];
capabilities: string[];
};
optimization_suggestion_agent: {
tools: string[];
capabilities: string[];
};
test_generation_agent: {
tools: string[];
capabilities: string[];
};
coverage_analysis_agent: {
tools: string[];
capabilities: string[];
};
};
export declare function routeToOrchestrator(userInput: string): string;
//# sourceMappingURL=orchestrator-tools.d.ts.map