UNPKG

@tosin2013/mcp-shrimp-task-manager

Version:

Enhanced MCP Shrimp Task Manager with comprehensive LLM integration. A task management tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. Features real GPT-4 ↔ MCP tools communication, comprehensive testing pipeline

21 lines (20 loc) 679 B
import { z } from "zod"; export declare const planTaskSchema: z.ZodObject<{ description: z.ZodString; requirements: z.ZodOptional<z.ZodString>; existingTasksReference: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>; }, "strip", z.ZodTypeAny, { description: string; existingTasksReference: boolean; requirements?: string | undefined; }, { description: string; requirements?: string | undefined; existingTasksReference?: boolean | undefined; }>; export declare function planTask({ description, requirements, existingTasksReference, }: z.infer<typeof planTaskSchema>): Promise<{ content: { type: "text"; text: string; }[]; }>;