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

28 lines (27 loc) 612 B
import { z } from "zod"; export declare const verifyTaskSchema: z.ZodObject<{ taskId: z.ZodString; summary: z.ZodString; score: z.ZodNumber; }, "strip", z.ZodTypeAny, { summary: string; score: number; taskId: string; }, { summary: string; score: number; taskId: string; }>; export declare function verifyTask({ taskId, summary, score, }: z.infer<typeof verifyTaskSchema>): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: undefined; }>;