@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
31 lines (30 loc) • 799 B
TypeScript
import { z } from "zod";
export declare const queryTaskSchema: z.ZodObject<{
query: z.ZodString;
isId: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
pageSize: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
}, "strip", z.ZodTypeAny, {
query: string;
isId: boolean;
page: number;
pageSize: number;
}, {
query: string;
isId?: boolean | undefined;
page?: number | undefined;
pageSize?: number | undefined;
}>;
export declare function queryTask({ query, isId, page, pageSize, }: z.infer<typeof queryTaskSchema>): Promise<{
content: {
type: "text";
text: string;
}[];
isError?: undefined;
} | {
content: {
type: "text";
text: string;
}[];
isError: boolean;
}>;