UNPKG

dependency-context

Version:

MCP server for providing dependency documentation context to AI assistants

13 lines (12 loc) 350 B
import { Dependency } from '../parsers'; import { Config } from '../config'; export interface Repository { name: string; owner: string; url: string; ref: string; } /** * Find the GitHub repository for a dependency */ export declare function findGitHubRepository(dependency: Dependency, config?: Config): Promise<Repository | null>;