@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
30 lines (29 loc) • 852 B
TypeScript
/**
* Implementation of the interact_spec command for the Idea Honing Tool
*
* This file contains the command execution logic for interacting with specifications
* through the User Interaction Handler.
*/
import { z } from "zod";
export declare const interactSpecSchema: z.ZodObject<{
specId: z.ZodOptional<z.ZodString>;
command: z.ZodString;
}, "strip", z.ZodTypeAny, {
command: string;
specId?: string | undefined;
}, {
command: string;
specId?: string | undefined;
}>;
/**
* Main function for interacting with specifications
*
* @param params - Parameters for the interact_spec command
* @returns Response object with content for the MCP framework
*/
export declare function interactSpec(params: z.infer<typeof interactSpecSchema>): Promise<{
content: {
type: "text";
text: string;
}[];
}>;