UNPKG

dependency-context

Version:

MCP server for providing dependency documentation context to AI assistants

15 lines (14 loc) 349 B
export interface Config { port: number; githubToken?: string; embeddingModel: string; storageDir: string; debugMode: boolean; minChunkSize: number; maxChunkSize: number; chunksReturned: number; } /** * Get configuration from environment variables */ export declare function getConfig(projectPath?: string): Config;