UNPKG

mcp-adr-analysis-server

Version:

MCP server for analyzing Architectural Decision Records and project architecture

24 lines 828 B
/** * MCP Resource implementations using prompt-driven approach * Generates structured data resources for architectural analysis */ export interface ResourceGenerationResult { data: any; contentType: string; lastModified: string; cacheKey: string; ttl: number; } /** * Generate architectural knowledge graph resource */ export declare function generateArchitecturalKnowledgeGraph(projectPath: string): Promise<ResourceGenerationResult>; /** * Generate analysis report resource */ export declare function generateAnalysisReport(projectPath: string, focusAreas?: string[]): Promise<ResourceGenerationResult>; /** * Generate ADR list resource */ export declare function generateAdrList(adrDirectory?: string, projectPath?: string): Promise<ResourceGenerationResult>; //# sourceMappingURL=index.d.ts.map