octocode-mcp
Version:
Model Context Protocol (MCP) server for advanced GitHub repository analysis and code discovery. Provides AI assistants with powerful tools to search, analyze, and understand codebases across GitHub.
22 lines (21 loc) • 621 B
TypeScript
import { z } from 'zod';
export declare const BaseQuerySchema: z.ZodObject<{
mainResearchGoal: z.ZodString;
researchGoal: z.ZodString;
reasoning: z.ZodString;
}, "strip", z.ZodTypeAny, {
mainResearchGoal: string;
researchGoal: string;
reasoning: string;
}, {
mainResearchGoal: string;
researchGoal: string;
reasoning: string;
}>;
export declare function createBulkQuerySchema<T extends z.ZodTypeAny>(toolName: string, singleQuerySchema: T): z.ZodObject<{
queries: z.ZodArray<T, "many">;
}, "strip", z.ZodTypeAny, {
queries: T["_output"][];
}, {
queries: T["_input"][];
}>;