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

24 lines (23 loc) 672 B
import { z } from "zod"; export declare const researchModeSchema: z.ZodObject<{ topic: z.ZodString; previousState: z.ZodDefault<z.ZodOptional<z.ZodString>>; currentState: z.ZodString; nextSteps: z.ZodString; }, "strip", z.ZodTypeAny, { previousState: string; topic: string; currentState: string; nextSteps: string; }, { topic: string; currentState: string; nextSteps: string; previousState?: string | undefined; }>; export declare function researchMode({ topic, previousState, currentState, nextSteps, }: z.infer<typeof researchModeSchema>): Promise<{ content: { type: "text"; text: string; }[]; }>;