@jmkim85/dev-flow-mcp
Version:
MCP-based Dev Flow - AI-powered development workflow management with 13 essential tools for TDD and context management
41 lines • 1.02 kB
TypeScript
/**
* Core Tool Handlers Module
* Implements the core MCP tool handlers for Dev Flow
*/
export declare function getNextTask(): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function startTask(taskId: string, stage?: string): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function checkProgress(runTests?: boolean): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function saveCheckpoint(message: string, files?: string[]): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function recordMistake(pattern: string, context?: string, solution?: string): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function completeTask(summary?: string): Promise<{
content: {
type: string;
text: string;
}[];
}>;
//# sourceMappingURL=core-tool-handlers.d.ts.map