UNPKG

@pimzino/agentic-tools-mcp

Version:

A comprehensive MCP server for task management and agent memories with JSON file storage

33 lines (32 loc) 753 B
import { z } from 'zod'; import { Storage } from '../../storage/storage.js'; /** * Create a new project * * @param storage - Storage instance * @returns MCP tool handler for creating projects */ export declare function createCreateProjectTool(storage: Storage): { name: string; description: string; inputSchema: { name: z.ZodString; description: z.ZodString; }; handler: ({ name, description }: { name: string; description: string; }) => Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: undefined; }>; };