Key takeaways
- Indexes any codebase into a knowledge graph — every dependency, call chain, cluster, and execution flow — then exposes it through MCP tools so AI agents get full architectural awareness before making edits
- Zero-server architecture: CLI mode runs entirely local (Tree-sitter native, LadybugDB), web UI runs entirely in-browser (Tree-sitter WASM, LadybugDB WASM). No data leaves your machine
- Full integrations (MCP + skills + hooks) with Claude Code, Cursor, and Google Antigravity; Codex, OpenCode, and Windsurf also supported. 16 MCP tools including cross-repo group analysis. One MCP server serves all indexed repos
- 42k stars, 4.8k forks, ~245k npm downloads/month as of June 2026. Now offers enterprise SaaS/self-hosted deployments and commercial licensing via Akon Labs. Positions itself as "like DeepWiki but deeper" — DeepWiki generates descriptions, GitNexus tracks every structural relationship
FAQ
What is GitNexus?
A code intelligence engine that indexes repositories into a knowledge graph capturing every dependency, call chain, import, and execution flow. It exposes this graph via MCP tools so AI coding agents (Cursor, Claude Code, etc.) can query codebase structure before making changes — preventing missed dependencies and broken call chains.
How does GitNexus differ from DeepWiki?
DeepWiki generates natural language descriptions of code. GitNexus builds a queryable knowledge graph that tracks every structural relationship (imports, calls, defines, implements, extends). DeepWiki helps you understand code; GitNexus lets you analyze it programmatically.
Does GitNexus send code to the cloud?
No. The CLI runs entirely local with native Tree-sitter and LadybugDB. The web UI runs entirely in-browser via WASM. No code leaves your machine. The only optional cloud call is for wiki generation, which uses an LLM API you configure.
What editors does GitNexus support?
Claude Code, Cursor, and Google Antigravity get full support (MCP + agent skills + hooks). Codex and OpenCode get MCP + skills. Windsurf gets MCP only. Any MCP-compatible tool can connect.
How much does GitNexus cost?
The open-source version is free for noncommercial use under the PolyForm Noncommercial license. As of June 2026, GitNexus also offers an enterprise track — managed SaaS or self-hosted — plus commercial licensing of the OSS version, arranged via Discord or Akon Labs (founders@akonlabs.com). No public price list yet.
Overview
GitNexus is a zero-server code intelligence engine that indexes any codebase into a knowledge graph — capturing every dependency, call chain, cluster, and execution flow — then exposes it through MCP tools so AI coding agents get deep architectural awareness before making changes.
The core problem it solves: AI coding tools edit functions without knowing that 47 other functions depend on them. They ship blind edits that break call chains, miss dependencies, and create subtle regressions. GitNexus precomputes every relationship into a queryable graph, giving agents the structural context they lack.
Key stats (as of June 11, 2026): 41,958 stars, 4,766 forks on GitHub, TypeScript, PolyForm Noncommercial license. Created August 2025 by Abhigyan Patwari. 288 open issues; last push June 11, 2026 — very active. npm v1.6.7 shipped June 9, 2026, with ~245k downloads in the past month.
Adoption trajectory: Pebblous's June 2026 production audit traces the breakout — roughly 1,195 stars on April 10, 2026 to ~41,000 by June 5, a hockey stick following April launch coverage. The maintainer has publicly warned that some star growth may be bot- or event-driven, so treat the raw count with appropriate skepticism. The v1.6.5 cycle drew 23 contributors, 15 of them first-timers.
Architecture
Two Modes, One Graph
GitNexus runs in two modes with identical graph capabilities:
| Dimension | CLI + MCP | Web UI |
|---|---|---|
| Purpose | Daily development with AI agents | Quick exploration and demos |
| Scale | Full repos, any size | ~5k files (browser memory), unlimited via backend mode |
| Storage | LadybugDB native (fast, persistent) | LadybugDB WASM (in-memory, per session) |
| Parsing | Tree-sitter native bindings | Tree-sitter WASM |
| Privacy | Everything local, no network | Everything in-browser, no server |
Bridge mode connects the two: gitnexus serve starts a local HTTP server, and the web UI auto-detects it to browse all CLI-indexed repos without re-uploading or re-indexing.
The Knowledge Graph
GitNexus builds a graph with typed relationships:
- IMPORTS — module dependencies
- CALLS — function call chains
- DEFINES — symbol definitions
- IMPLEMENTS — interface implementations
- EXTENDS — class inheritance
On top of this raw graph, GitNexus computes higher-order structures:
- Clusters — Functional groups detected via Leiden community detection algorithm, with cohesion scores
- Processes — Execution flows traced through call chains, with step-by-step traces
- Blast radius — Impact analysis with depth grouping and confidence scoring
This is what differentiates GitNexus from simpler code search tools. It does not just find symbols — it understands how they relate, group, and affect each other.
LadybugDB
GitNexus uses LadybugDB, a custom graph database built for this use case. It runs natively on the CLI and via WASM in the browser. This is an unusual choice — most tools would reach for Neo4j or a simpler SQLite-backed store — but it enables the zero-server architecture without external dependencies.
MCP Integration
16 Tools
GitNexus now exposes 16 MCP tools (up from 7 at our original profile date) — 11 per-repo plus 5 cross-repo "group" tools:
| Tool | What It Does |
|---|---|
list_repos | Discover all indexed repositories (paginated) |
query | Process-grouped hybrid search (BM25 + semantic + Reciprocal Rank Fusion) |
context | 360-degree symbol view — categorized refs, process participation |
impact | Blast radius analysis with depth grouping and confidence |
detect_changes | Git-diff impact — maps changed lines to affected processes |
rename | Multi-file coordinated rename with graph + text search |
cypher | Raw Cypher graph queries for power users |
group_list / group_sync / group_contracts / group_query / group_status | Multi-repo groups — extract API contracts, match them across repos/services, search execution flows across a whole group, check staleness |
The impact and detect_changes tools are the most valuable for AI agents — they answer "if I change this function, what breaks?" before the agent makes the edit. The group tools, added since March 2026, extend that to microservice fleets: cross-repo contract extraction and matching.
7 Resources
MCP resources provide instant context without tool calls:
gitnexus://repos— list all indexed reposgitnexus://repo/{name}/context— codebase stats and stalenessgitnexus://repo/{name}/clusters— all functional clusters with cohesion scoresgitnexus://repo/{name}/cluster/{name}— cluster members and detailsgitnexus://repo/{name}/processes— all execution flowsgitnexus://repo/{name}/process/{name}— full process trace with stepsgitnexus://repo/{name}/schema— graph schema for Cypher queries
Editor Support
| Editor | MCP | Skills | Hooks | Support Level |
|---|---|---|---|---|
| Claude Code | Yes | Yes | PreToolUse + PostToolUse | Full |
| Cursor | Yes | Yes | postToolUse (manual install) | Full |
| Antigravity (Google) | Yes | Yes | AfterTool (Gemini CLI hooks schema) | Full |
| Codex | Yes | Yes | — | MCP + Skills |
| OpenCode | Yes | Yes | — | MCP + Skills |
| Windsurf | Yes | — | — | MCP only |
Claude Code gets the deepest integration: MCP tools for queries, agent skills for guided workflows (exploring, debugging, impact analysis, refactoring), and hooks that enrich searches with graph context before tool use and auto-reindex after commits. Since March 2026, Cursor has been promoted to full support (with a manually installed hook) and Google Antigravity and OpenAI Codex have been added.
Global MCP Registry
One MCP server serves all indexed repos — no per-project configuration needed. Set it up once with gitnexus setup (auto-detects editors) and it works everywhere. When only one repo is indexed, the repo parameter is optional.
Agent Skills
GitNexus auto-installs 4 agent skills to .claude/skills/:
- Exploring — Navigate unfamiliar code using the knowledge graph
- Debugging — Trace bugs through call chains
- Impact Analysis — Analyze blast radius before changes
- Refactoring — Plan safe refactors using dependency mapping
With --skills, it also generates repo-specific skills based on detected communities (Leiden algorithm). Each skill describes a module's key files, entry points, execution flows, and cross-area connections — targeted context for the exact area of code being worked on.
It also generates AGENTS.md and CLAUDE.md context files automatically on analyze.
Pricing & Licensing
| Tier | Price | Includes |
|---|---|---|
| Open source | Free (noncommercial use) | Full CLI + MCP + web UI under PolyForm Noncommercial 1.0.0 |
| Commercial license | Contact | Commercial use of the OSS version "with proper licensing" |
| Enterprise | Contact | Fully managed SaaS or self-hosted deployment |
Pricing as of June 2026. The enterprise and commercial tracks are new since our March profile — inquiries go through Discord or email to founders@akonlabs.com, signaling that GitNexus is commercializing under an entity called Akon Labs. No public price list exists yet.
The Code Intelligence Landscape
GitNexus sits at the intersection of code search, static analysis, and agent context:
| Tool | Approach | Agent Integration |
|---|---|---|
| GitNexus | Knowledge graph (structural relationships) | MCP + skills + hooks |
| DeepWiki | LLM-generated documentation | Read-only wiki |
| Greptile | Codebase-aware AI search (cloud) | API |
| Sourcegraph | Code search + intelligence (enterprise) | Cody AI |
| Aider / repo-map | Lightweight tag-based code maps | Built into agent |
GitNexus's differentiator is the knowledge graph approach — it does not summarize code (DeepWiki) or search it (Sourcegraph). It models every structural relationship so agents can query impact, trace execution flows, and understand blast radius before editing.
Strengths
- Zero-server privacy — No cloud dependency, no code exfiltration risk. Critical for enterprise and security-conscious teams
- Graph depth — Blast radius analysis, execution flow tracing, and community detection go well beyond what code search provides
- MCP-native — Built for the agent era. 7 tools + 7 resources + 2 prompts + 4 skills is the most comprehensive MCP integration in the code intelligence space
- Hybrid search — BM25 + semantic + Reciprocal Rank Fusion, grouped by process. Not just finding symbols but understanding their role in execution flows
- Auto-reindex — PostToolUse hooks in Claude Code keep the graph current after every commit
Weaknesses
- PolyForm Noncommercial license — Not truly open source. Commercial use requires a separate license; the license gray zone reportedly drove at least one team (LangWatch) to switch to MIT-licensed CodeGraphContext
- LadybugDB lock-in — Custom database engine means no ecosystem tooling, harder to debug, and a bus factor risk
- Browser memory limits — Web UI caps at ~5k files without backend mode. Large monorepos need the CLI
- Large-repo scaling — Pebblous documented Node.js heap OOM on a Linux-kernel-scale analysis (issue #1983); the maintainer's own guidance is that 10k+ files risk heap overflow and 50k+ files should run overnight
- Parsing gaps — Reported gaps in Vue, Swift, Rust, Kotlin, Go, and Dart parsing despite the "14 language" claim
- Single-maintainer core — Contributor count is growing (23 in the v1.6.5 cycle), but core decisions still rest with Abhigyan Patwari. Bus factor concern for production dependency
- No incremental indexing yet — Still on the roadmap as of June 2026; a chunk-level cache for incremental-analyze exists, but full changed-file-only reindexing has not shipped
- Crypto scam adjacency — Had to add a disclaimer about unauthorized tokens on Pump.fun, and the maintainer has warned that some star growth may be bot- or event-driven
What Developers Say
Direct community quotes are hard to capture for this one: the original Reddit announcement threads (r/LocalLLaMA, r/mcp) remain live but Reddit blocks programmatic retrieval, and no Hacker News discussion surfaced in searches as of June 11, 2026. The most substantive third-party assessment is Pebblous's June 2026 production audit:
- Senior engineer Sidharth Satapathy, running GitNexus in a 17-agent production environment, measured 88% fewer tool calls, 74% token savings per retrieval query, and complete elimination of raw file reads in the measured case.
- Maintainer Abhigyan Patwari, on scaling limits, verbatim: "Over 10,000 files risks heap overflow; over 50,000 files, run overnight."
- The same audit notes a counter-signal: LangWatch dropped GitNexus for MIT-licensed CodeGraphContext over the PolyForm Noncommercial gray zone.
MarkTechPost's April 2026 coverage credits the launch spike — 2,000+ stars in a single day — to enthusiasm for the precomputed-graph approach over agents chaining raw graph queries.
What to Watch
- Commercial execution — The enterprise SaaS/self-hosted track and Akon Labs commercial licensing are now live in name; whether public pricing and real enterprise references follow is the test
- LadybugDB maturity — If the custom DB engine proves stable and performant at scale, it validates the zero-server approach. The documented heap-OOM failures on very large repos say it is not there yet
- Competition from editor-native features — Cursor, Claude Code, and Windsurf are all building deeper codebase awareness natively. GitNexus needs to stay ahead on graph depth
- Incremental indexing — Still roadmap as of June 2026. Essential for large-repo developer experience; full re-index on every change will not scale
- Community contributions — 4.8k forks and a broadening contributor base (15 first-timers in one release cycle), but the noncommercial license keeps the contribution incentive complicated
Bottom Line
GitNexus is the most sophisticated source-available code intelligence tool for AI agents, and the June 2026 picture is much stronger than our March profile: 42k stars (up from 14k), ~245k npm downloads/month, 16 MCP tools including cross-repo group analysis, full-support integrations expanded to Cursor and Google Antigravity, and independently measured production results (88% fewer tool calls, 74% token savings).
Recommended for: Developers using AI coding agents daily who want graph-powered blast radius analysis before edits, and privacy-conscious teams who need the zero-server architecture — on repos under ~10k files, where it works as advertised
Not recommended for: Commercial teams unwilling to negotiate a license (PolyForm Noncommercial is not open source; LangWatch's defection to MIT-licensed CodeGraphContext is the cautionary tale), or very large monorepos until incremental indexing and the heap-OOM scaling issues are resolved
Outlook: Very much alive — pushed the day of this review, shipping multiple npm releases a week, and commercializing via Akon Labs (enterprise SaaS, self-hosted, commercial OSS licensing). The risks have shifted from "will anyone use it" to execution: LadybugDB scaling, incremental indexing, and converting hype-cycle stars (which the maintainer himself admits are partly bot-driven) into durable adoption.
Research by Ry Walker Research