UNPKG

@codewithdan/ai-repo-adventure-mcp

Version:

MCP server for AI-powered code repository exploration through interactive storytelling

21 lines 613 B
/** * View Progress Tool * * Provides comprehensive quest progress dashboard showing your learning * journey through the codebase. */ import { z } from 'zod'; declare const progressSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; type ProgressArgs = z.infer<typeof progressSchema>; export declare const viewProgress: { description: string; schema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; handler: (_args: ProgressArgs) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export {}; //# sourceMappingURL=view-progress.d.ts.map