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

15 lines (14 loc) 469 B
import { z } from "zod"; export declare const listTasksSchema: z.ZodObject<{ status: z.ZodEnum<["all", "pending", "in_progress", "completed"]>; }, "strip", z.ZodTypeAny, { status: "pending" | "in_progress" | "completed" | "all"; }, { status: "pending" | "in_progress" | "completed" | "all"; }>; export declare function listTasks({ status }: z.infer<typeof listTasksSchema>): Promise<{ content: { type: "text"; text: string; }[]; }>;