MCPcopy
hub / github.com/giancarloerra/SocratiCode / getGraphBuildProgress

Function getGraphBuildProgress

src/services/code-graph.ts:82–84  ·  view source on GitHub ↗
(projectPath: string)

Source from the content-addressed store, hash-verified

80
81/** Get progress details for a graph build currently in progress */
82export function getGraphBuildProgress(projectPath: string): GraphBuildProgress | null {
83 return graphBuildInProgress.get(path.resolve(projectPath)) ?? null;
84}
85
86/** Get the last completed graph build for a project */
87export function getLastGraphBuildCompleted(projectPath: string): GraphBuildCompleted | null {

Callers 2

handleGraphToolFunction · 0.85

Calls 1

getMethod · 0.80

Tested by

no test coverage detected