@jmkim85/dev-flow-mcp
Version:
MCP-based Dev Flow - AI-powered development workflow management with 13 essential tools for TDD and context management
23 lines • 606 B
TypeScript
/**
* Context Tool Handlers Module
* Implements context management MCP tool handlers for Dev Flow
*/
export declare function createContextFrame(taskId: string, stage: string, summary?: string): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function addContextFact(fact: string, isGlobal?: boolean): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare function getContext(): Promise<{
content: {
type: string;
text: string;
}[];
}>;
//# sourceMappingURL=context-tool-handlers.d.ts.map