@codewithdan/ai-repo-adventure-mcp
Version:
MCP server for AI-powered code repository exploration through interactive storytelling
33 lines • 809 B
TypeScript
/**
* Explore Quest Tool
*
* Delivers deep, workshop-style code exploration through LLM-generated
* themed content with adventure.config.json guidance.
*/
import { z } from 'zod';
declare const exploreQuestSchema: z.ZodObject<{
choice: z.ZodString;
}, "strip", z.ZodTypeAny, {
choice: string;
}, {
choice: string;
}>;
type ExploreQuestArgs = z.infer<typeof exploreQuestSchema>;
export declare const exploreQuest: {
description: string;
schema: z.ZodObject<{
choice: z.ZodString;
}, "strip", z.ZodTypeAny, {
choice: string;
}, {
choice: string;
}>;
handler: (args: ExploreQuestArgs) => Promise<{
content: {
type: "text";
text: string;
}[];
}>;
};
export {};
//# sourceMappingURL=explore-quest.d.ts.map