UNPKG

dependency-context

Version:

MCP server for providing dependency documentation context to AI assistants

10 lines (9 loc) 235 B
export interface Dependency { name: string; version: string; type: "npm" | "python"; } /** * Parse dependencies from project files */ export declare function parseDependencies(projectPath: string): Promise<Dependency[]>;