mcp-adr-analysis-server
Version:
MCP server for analyzing Architectural Decision Records and project architecture
39 lines • 1.12 kB
TypeScript
/**
* MCP Tool for deployment completion analysis
* Implements prompt-driven deployment progress tracking and completion verification
*/
/**
* Analyze deployment progress and verify completion
*/
export declare function analyzeDeploymentProgress(args: {
analysisType?: 'tasks' | 'cicd' | 'progress' | 'completion' | 'comprehensive';
adrDirectory?: string;
todoPath?: string;
cicdLogs?: string;
pipelineConfig?: string;
deploymentTasks?: Array<{
taskId: string;
taskName: string;
status: string;
progress: number;
category: string;
priority: string;
verificationCriteria: string[];
expectedOutcome: string;
}>;
outcomeRules?: Array<{
ruleId: string;
description: string;
criteria: string[];
verificationMethod: string;
}>;
actualOutcomes?: Array<{
taskId: string;
outcome: string;
evidence: string[];
timestamp: string;
}>;
cicdStatus?: any;
environmentStatus?: any;
}): Promise<any>;
//# sourceMappingURL=deployment-analysis-tool.d.ts.map