Give your AI "eyes" to see your entire codebase structure.
Graph-It-Live is a dual-purpose tool:
1.For Humans: A real-time interactive graph to visualize and navigate dependencies in TypeScript, JavaScript, Vue, Svelte, and GraphQL projects.
2.For AI: A built-in Model Context Protocol (MCP) Server that lets assistants like GitHub Copilot, Claude, and Cursor analyze your project's architecture, find impact of changes, and understand complex relationships without hallucinating.
Stop pasting file paths and explaining your project structure. Graph-It-Live exposes 17 powerful dependency analysis tools directly to your AI assistant via the Model Context Protocol (MCP).
What your AI can do with Graph-It-Live:
- "Map out the architecture of the
authmodule" -> AI crawls the dependency tree. - "What breaks if I change
User.ts?" -> AI performs instant reverse lookup to find all dependents. - "What calls
formatDate()function?" -> AI finds all symbol-level callers with O(1) lookup. - "Show me function-level dependencies in this file" -> AI analyzes symbol-level relationships.
- "Analyze the impact of changing
calculateTotal's signature" -> AI detects breaking changes. - "Find unused exports in the codebase" -> AI detects dead code automatically.
- "Are there circular dependencies?" -> AI detects cycles automatically.
- "Explain how data flows from
App.vueto the API" -> AI traces the import path.
- MCP Server for AI Integration (New): Built-in Model Context Protocol (MCP) Server exposes dependency analysis tools to AI assistants.
- Unused Dependency Filter (New): Smart filter to show only dependencies that are actually used in your code. Toggle between showing all imports or filtering unused ones with a single click. Configurable to either hide unused edges completely or show them dimmed.
- Symbol-Level Analysis (New): Drill down to see function-to-function and class-to-class dependencies within files.
- Real-time Dependency Visualization: Interactive graph showing file dependencies.
- Multi-Language Support: First-class support for TypeScript (
.ts,.tsx), JavaScript (.js,.jsx), Vue (.vue), Svelte (.svelte), and GraphQL (.gql,.graphql). - Cycle Detection: Automatically detects and highlights circular dependencies with red dashed lines and badges.
- Smart Navigation: Use VS Code's built-in navigation (Go Back / Go Forward) to move through your code history. Graph-It-Live also exposes navigation actions in the webview or panel menu.
- Background Indexing (New): Optionally index your entire workspace in the background for instant reverse dependency lookups. Uses a separate worker thread to avoid blocking the IDE.
- Interactive Graph:
- Filter Unused Dependencies: Use the eye/eye-closed toggle button in the toolbar to show only imports that are actually used in the code. Choose between hiding unused edges completely or showing them dimmed.
- Expand/Collapse: Dynamically load dependencies using the node controls available in the webview/panel menu or the node's context menu (hover actions may still appear depending on layout).
- Bidirectional Navigation: Use the "Find Referencing Files" action from a node's context menu or the webview/panel menu to see files that import the selected file. With background indexing enabled, this is instant (O(1) lookup).
- File Navigation: Click on any node to instantly open the corresponding file in the editor.
- Drill-Down (New): Double-click a file node or choose the "Drill Down" action in the node context menu or webview/panel menu to see symbol-level dependencies within that file.
- Node.js: v18 or higher (v20 LTS recommended)
- VS Code: v1.96.0 or higher
Install directly from the VS Code Marketplace (when published) or search for "Graph-It-Live" in the Extensions view (Ctrl+Shift+X or Cmd+Shift+X).
The extension is also available on the Open VSX Registry. You can install it using a compatible editor (like VSCodium) or by downloading the .vsix from the registry page.
1.Open a Project: Open a folder containing TypeScript, JavaScript, Vue, Svelte, or GraphQL files.
2.Open the Graph:
- Click the Graph-It-Live icon in the Activity Bar (left sidebar).
- Or run the command: Graph-It-Live: Show Dependency Graph.
- Or click the graph icon in the editor title bar when viewing a supported file.
3.Interact:
- Navigate: Click a node to open the file.
- Expand: Use the "Expand" action from the node context menu or the webview/panel menu to reveal a node's dependencies.
- Drill-Down: Double-click a file node or choose the "Drill Down" action in the node context menu to see symbol-level dependencies (functions, classes) within that file.
- Reverse Lookup: Use the "Find Referencing Files" action in the node context menu or the webview/panel menu to see which files import the current file.
For optimal performance on your machine, configure the performance profile in VS Code settings:
Setting: graph-it-live.performanceProfile
default(recommended): Balanced settings for most machines (4GB-8GB RAM)- Concurrency: 4, Max edges: 2000, Cache: 500/200
low-memory: Optimized for resource-constrained machines (<4GB RAM)- Concurrency: 2, Max edges: 1000, Cache: 200/100
high-performance: Maximizes speed on powerful workstations (16GB+ RAM)- Concurrency: 12, Max edges: 5000, Cache: 1500/800
custom: Manual configuration - all performance settings become editable
When you select a preset profile (default, low-memory, or high-performance):
- All related performance settings are automatically configured
- Settings like
unusedAnalysisConcurrency,maxCacheSize, etc. update instantly - Individual settings become read-only to prevent conflicts
Select custom profile to unlock manual control of all performance parameters:
graph-it-live.unusedAnalysisConcurrency: Parallel file analysis (1-16)graph-it-live.unusedAnalysisMaxEdges: Skip auto-analysis threshold (0=unlimited)graph-it-live.maxCacheSize: Dependency cache size (50-2000)graph-it-live.maxSymbolCacheSize: Symbol cache size (50-1000)graph-it-live.indexingConcurrency: Background indexing parallelism (1-16)
Customize the extension in VS Code Settings (Cmd+, or Ctrl+,):
Configure how unused dependencies are displayed: hide (remove completely) or dim (show with reduced opacity)
| Setting | Default | Description |
|---|---|---|
graph-it-live.performanceProfile |
default |
Performance preset: default, low-memory, high-performance, or custom for manual control. When set to a preset, related performance settings are applied automatically. |
graph-it-live.enableMcpServer |
false |
Enable the MCP (Model Context Protocol) server for AI/LLM integration. Only enable if you need AI assistants to access project analysis tools. |
graph-it-live.enableMcpDebugLogging |
false |
Privacy-sensitive debug logging for the MCP server (creates ~/mcp-debug.log). Enable only for troubleshooting; logs rotate automatically. See Security Guide. |
graph-it-live.maxDepth |
50 |
Maximum dependency depth to analyze during crawls and initial graph generation. |
graph-it-live.excludeNodeModules |
true |
Exclude node_modules imports from the graph to reduce noise and improve performance. |
graph-it-live.enableBackgroundIndexing |
true |
Enable background indexing of the workspace for fast reverse dependency lookups (O(1) queries). |
graph-it-live.persistIndex |
false |
Persist the reverse index to disk for faster startup. Index entries are validated by mtime/size. |
graph-it-live.indexingConcurrency |
4 |
Number of files to process in parallel during background indexing (1-16). Editable only when performanceProfile is custom. |
graph-it-live.indexingStartDelay |
1000 |
Delay (ms) before starting background indexing after activation; allows VS Code to finish startup. |
graph-it-live.logLevel |
info |
Logging verbosity: debug, info, warn, error, or none. |
graph-it-live.unusedDependencyMode |
hide |
How to display unused dependencies: hide removes them, dim shows them with reduced opacity and dashed styling. |
graph-it-live.unusedAnalysisConcurrency |
4 |
Number of source files to analyze in parallel for unused dependency detection (1-16). Lower values reduce memory usage. Editable only when performanceProfile is custom. |
graph-it-live.unusedAnalysisMaxEdges |
2000 |
Skip automatic unused dependency analysis if the graph has more edges than this threshold. Set to 0 for no limit. Editable only when performanceProfile is custom. |
graph-it-live.persistUnusedAnalysisCache |
false |
Cache unused dependency analysis results to disk to speed up subsequent loads. Results are invalidated on file change. |
graph-it-live.maxUnusedAnalysisCacheSize |
200 |
Maximum number of source files to cache for unused dependency analysis (LRU eviction). Adjust to tune memory vs hit-rate. |
graph-it-live.maxCacheSize |
500 |
Maximum number of file dependency analyses to keep in memory cache. Useful to control memory usage. |
graph-it-live.maxSymbolCacheSize |
200 |
Maximum number of symbol analysis results to keep in memory cache. |
Graph-It-Live includes an optional Model Context Protocol (MCP) Server that exposes its dependency analysis capabilities to AI assistants and LLMs.
Set graph-it-live.enableMcpServer to true in your VS Code settings. The server will automatically start when the extension activates.
The MCP server exposes 17 tools for AI/LLM consumption:
| Tool | Description |
|---|---|
graphitlive_set_workspace |
Set the project directory to analyze (required first if not auto-detected) |
graphitlive_analyze_dependencies |
Analyze a single file's direct imports and exports |
graphitlive_crawl_dependency_graph |
Crawl the full dependency tree from an entry file |
graphitlive_find_referencing_files |
Find all files that import a given file (reverse lookup) |
graphitlive_expand_node |
Expand a node to discover dependencies beyond known paths |
graphitlive_parse_imports |
Parse raw import statements without path resolution |
graphitlive_resolve_module_path |
Resolve a module specifier to an absolute file path |
graphitlive_get_symbol_graph |
Get symbol-level dependencies (functions, classes) within a file |
graphitlive_find_unused_symbols |
Find potentially unused exported symbols for dead code detection |
graphitlive_get_symbol_dependents |
Find all symbols that depend on a specific symbol |
graphitlive_trace_function_execution |
Trace the complete execution path through function calls |
graphitlive_get_symbol_callers |
Find all callers of a symbol with O(1) instant lookup |
graphitlive_analyze_breaking_changes |
Detect breaking changes when modifying function signatures |
graphitlive_get_impact_analysis |
Full impact analysis combining callers and breaking changes |
graphitlive_get_index_status |
Get the current state of the dependency index |
graphitlive_invalidate_files |
Invalidate specific files from the cache after modifications |
graphitlive_rebuild_index |
Rebuild the entire dependency index from scratch |
Note: Tool names were renamed from graphItLive_* to graphitlive_* (snake_case).
All MCP tools now support an optional format parameter to reduce token consumption for large datasets:
{
"tool": "graphitlive_crawl_dependency_graph",
"params": {
"entryFile": "/path/to/main.ts",
"format": "toon"
}
}Available formats:
json(default): Standard JSON outputtoon: Compact Token-Oriented Object Notation (saves 30-60% tokens)markdown: JSON wrapped in markdown code blocks
Example TOON Output:
files(file,deps,line)
[main.ts,fs|path,10]
[utils.ts,os|crypto,20]
# Token Savings
JSON: 125 tokens
TOON: 48 tokens
Savings: 77 tokens (61.6%)
Learn more: See TOON Format Documentation for complete specifications and usage examples.
If the automatic MCP server registration doesn't work in your editor (e.g., when using Antigravity, Cursor, or if you want to use the server outside of VS Code), you can manually configure the MCP server.
Click to expand configuration instructions for VS Code, Cursor, Claude Desktop, etc.
Create or edit .vscode/mcp.json in your workspace:
{
"servers": {
"graph-it-live": {
"type": "stdio",
"command": "node",
"args": ["${extensionPath:magic5644.graph-it-live}/dist/mcpServer.mjs"],
"env": {
"WORKSPACE_ROOT": "${workspaceFolder}",
"EXCLUDE_NODE_MODULES": "true",
"MAX_DEPTH": "50"
}
}
}
}Note: The
${extensionPath:magic5644.graph-it-live}variable automatically resolves to the extension's installation directory.
Create or edit .cursor/mcp.json in your workspace or ~/.cursor/mcp.json for global configuration:
{
"mcpServers": {
"graph-it-live": {
"command": "bash",
"args": ["-c", "node ~/.cursor/extensions/magic5644.graph-it-live-*/dist/mcpServer.mjs"],
"env": {
"WORKSPACE_ROOT": "${workspaceFolder}",
"EXCLUDE_NODE_MODULES": "true",
"MAX_DEPTH": "50"
}
}
}
}
⚠️ Partial Support: Antigravity's MCP integration is experimental.
Create .vscode/mcp.json in your workspace:
{
"mcpServers": {
"graph-it-live": {
"command": "node",
"args": ["${extensionPath:magic5644.graph-it-live}/dist/mcpServer.mjs"],
"env": {
"WORKSPACE_ROOT": "${workspaceFolder}",
"EXCLUDE_NODE_MODULES": "true",
"MAX_DEPTH": "50"
}
}
}
}Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS).
First, find your extension path:
ls ~/.vscode/extensions/ | grep graph-it-live
# Example output: magic5644.graph-it-live-1.0.0Then use the full path in your config:
{
"mcpServers": {
"graph-it-live": {
"command": "bash",
"args": ["-c", "node ~/.vscode/extensions/magic5644.graph-it-live-*/dist/mcpServer.mjs"],
"env": {
"WORKSPACE_ROOT": "/path/to/your/project",
"EXCLUDE_NODE_MODULES": "true",
"MAX_DEPTH": "50"
}
}
}
}When developing the extension locally:
{
"mcpServers": {
"graph-it-live": {
"command": "node",
"args": ["/path/to/Graph-It-Live/dist/mcpServer.mjs"],
"env": {
"WORKSPACE_ROOT": "/absolute/path/to/your/project",
"TSCONFIG_PATH": "/absolute/path/to/your/project/tsconfig.json",
"EXCLUDE_NODE_MODULES": "true",
"MAX_DEPTH": "50"
}
}
}
}Graph-It-Live/
├── src/
│ ├── analyzer/ # Dependency analysis (AST parsing)
│ ├── extension/ # VS Code extension host logic
│ ├── shared/ # Shared types
│ └── webview/ # React + ReactFlow UI
├── tests/ # Vitest unit tests
└── ...1.Clone:
bash git clone https://github.com/magic5644/Graph-It-Live.git cd Graph-It-Live
2.Install:
bash npm install
3.Run:
- Press `F5` in VS Code to start the Extension Development Host.
MIT License - see LICENSE file for details.
magic56 (magic5644)






