@jmkim85/dev-flow-mcp
Version:
MCP-based Dev Flow - AI-powered development workflow management with 13 essential tools for TDD and context management
38 lines • 980 B
TypeScript
/**
* Project Tool Handlers Module
* Implements project management MCP tool handlers for Dev Flow
*/
import { TemplateType } from './template-manager.js';
export declare function cleanTempFilesTool(): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function initializeProjectFile(templateType: TemplateType): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function createTaskStructure(taskId: string, taskTitle: string): Promise<{
content: {
type: string;
text: string;
}[];
}>;
/**
* Initialize a new Dev Flow project with complete structure (5-1)
*/
export declare function initProject(options?: {
project_name?: string;
project_type?: string;
workflow_type?: string;
include_templates?: boolean;
}): Promise<{
content: {
type: string;
text: string;
}[];
}>;
//# sourceMappingURL=project-tool-handlers.d.ts.map