UNPKG

dependency-context

Version:

MCP server for providing dependency documentation context to AI assistants

23 lines (22 loc) 794 B
import { z } from "zod"; declare const SearchParamsSchema: z.ZodObject<{ project_path: z.ZodString; query: z.ZodString; repository_context: z.ZodOptional<z.ZodString>; env_vars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; }, "strip", z.ZodTypeAny, { project_path: string; query: string; env_vars?: Record<string, string> | undefined; repository_context?: string | undefined; }, { project_path: string; query: string; env_vars?: Record<string, string> | undefined; repository_context?: string | undefined; }>; /** * Performs semantic search over indexed dependency documentation */ export declare function searchDependencyDocs(params: z.infer<typeof SearchParamsSchema>, context?: any): Promise<string>; export { SearchParamsSchema };