@z-test/memory-bank-mcp
Version:
MCP Server for managing Memory Bank
41 lines (40 loc) • 1.07 kB
TypeScript
import { ProgressTracker } from '../../core/ProgressTracker.js';
/**
* Definition of Memory Bank progress tools
*/
export declare const progressTools: {
name: string;
description: string;
inputSchema: {
type: string;
properties: {
action: {
type: string;
description: string;
};
description: {
type: string;
description: string;
};
updateActiveContext: {
type: string;
description: string;
default: boolean;
};
};
required: string[];
};
}[];
/**
* Processes the track_progress tool
* @param progressTracker ProgressTracker
* @param action Action performed
* @param description Description of the action
* @returns Operation result
*/
export declare function handleTrackProgress(progressTracker: ProgressTracker, action: string, description: string): Promise<{
content: {
type: string;
text: string;
}[];
}>;