@pimzino/agentic-tools-mcp
Version:
A comprehensive MCP server for task management and agent memories with JSON file storage
26 lines (25 loc) • 576 B
TypeScript
import { Storage } from '../../storage/storage.js';
/**
* List all projects
*
* @param storage - Storage instance
* @returns MCP tool handler for listing projects
*/
export declare function createListProjectsTool(storage: Storage): {
name: string;
description: string;
inputSchema: {};
handler: () => Promise<{
content: {
type: "text";
text: string;
}[];
isError?: undefined;
} | {
content: {
type: "text";
text: string;
}[];
isError: boolean;
}>;
};