mcp-code-graph
Version:
Code Graph MCP Server
8 lines (7 loc) • 309 B
TypeScript
declare const getGraphId: (providedGraphId?: string) => string | null;
declare const createToolSchema: <T extends Record<string, any>>(baseSchema: T) => T;
declare function extractRepoInfo(url: string): {
repoName: string;
repoOrg: string;
};
export { getGraphId, createToolSchema, extractRepoInfo };