/** * ═══════════════════════════════════════════════════════════════════════════════ * PROMPTSPEAK SYMBOL MCP TOOLS * ═══════════════════════════════════════════════════════════════════════════════ * * MCP tool definitions and handlers for directive symbol operations. * * ═══════════════════════════════════════════════════════════════════════════════ */ import type { Tool } from '@modelcontextprotocol/sdk/types.js'; export declare const symbolToolDefinitions: Tool[]; export declare function handleSymbolTool(name: string, args: Record): Promise; declare function formatSymbolForPrompt(symbolId: string, format?: 'full' | 'compact' | 'requirements_only'): { success: boolean; formatted?: string; error?: string; }; export { formatSymbolForPrompt, }; //# sourceMappingURL=tools.d.ts.map