UNPKG

mcp-adr-analysis-server

Version:

MCP server for analyzing Architectural Decision Records and project architecture

23 lines 692 B
/** * Expand Analysis Tool * * Retrieves full analysis content from tiered responses stored in memory. * Supports expanding entire analysis or specific sections. */ interface ExpandAnalysisParams { /** ID of the expandable analysis */ expandableId: string; /** Optional: Specific section to expand (if omitted, returns full analysis) */ section?: string; /** Format of the output */ format?: 'markdown' | 'json'; } export declare function expandAnalysisSection(params: ExpandAnalysisParams): Promise<{ content: Array<{ type: 'text'; text: string; }>; isError?: boolean; }>; export {}; //# sourceMappingURL=expand-analysis-tool.d.ts.map