UNPKG

@codewithdan/ai-repo-adventure-mcp

Version:

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

33 lines 921 B
/** * Start Adventure Tool * * Transforms any codebase into an interactive adventure using repomix analysis * and LLM-powered storytelling. */ import { z } from 'zod'; declare const startAdventureSchema: z.ZodObject<{ projectPath: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { projectPath?: string | undefined; }, { projectPath?: string | undefined; }>; type StartAdventureArgs = z.infer<typeof startAdventureSchema>; export declare const startAdventure: { description: string; schema: z.ZodObject<{ projectPath: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { projectPath?: string | undefined; }, { projectPath?: string | undefined; }>; handler: (args: StartAdventureArgs) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; export {}; //# sourceMappingURL=start-adventure.d.ts.map