mcp-adr-analysis-server
Version:
MCP server for analyzing Architectural Decision Records and project architecture
59 lines • 1.69 kB
TypeScript
/**
* MCP Tool for research question generation
* Implements prompt-driven research question generation and task tracking
* Enhanced with Generated Knowledge Prompting (GKP) for research methodology expertise
*/
/**
* Generate research questions and create research tracking system
* Enhanced with Generated Knowledge Prompting for research methodology expertise
*/
export declare function generateResearchQuestions(args: {
analysisType?: 'correlation' | 'relevance' | 'questions' | 'tracking' | 'comprehensive';
researchContext?: {
topic: string;
category: string;
scope: string;
objectives: string[];
constraints?: string[];
timeline?: string;
};
problems?: Array<{
id: string;
description: string;
category: string;
severity: string;
context: string;
}>;
knowledgeGraph?: {
technologies: any[];
patterns: any[];
adrs: any[];
relationships: any[];
};
relevantKnowledge?: {
adrs: any[];
patterns: any[];
gaps: any[];
opportunities: any[];
};
researchQuestions?: Array<{
id: string;
question: string;
type: string;
priority: string;
timeline: string;
methodology: string;
}>;
currentProgress?: Array<{
questionId: string;
status: string;
progress: number;
findings: string[];
blockers: string[];
}>;
projectPath?: string;
adrDirectory?: string;
knowledgeEnhancement?: boolean;
enhancedMode?: boolean;
}): Promise<any>;
//# sourceMappingURL=research-question-tool.d.ts.map