GitNexus: A Zero-Server Code Intelligence Engine for AI Agents Abhigyan Patwari has released GitNexus, an open-source code intelligence engine that converts software repositories into structured knowledge graphs locally, without server dependencies. Using Tree-sitter parsers, it analyzes source files to map function calls, class inheritances, and execution paths, and serves as an MCP server for AI coding tools like Claude Code and Cursor, enabling precise dependency queries and blast-radius checks before code modifications. As software development teams rely more heavily on autonomous AI coding agents such as Claude Code, Cursor, and Codex , managing codebase context has become a critical bottleneck. Large codebases frequently suffer from "dependency blindness," where AI assistants edit individual functions without understanding the broader call chain or execution flow. GitNexus is an open-source code intelligence engine developed by Abhigyan Patwari to solve codebase graph indexing. Built to operate without server dependencies, GitNexus turns software repositories into structured knowledge graphs directly inside your local environment or browser. GitNexus functions as a visual and programmatic context layer. Using Tree-sitter parsers, it analyzes source files to identify function calls, class inheritances, module imports, and execution paths—building a comprehensive AST knowledge graph. Security and privacy are central to GitNexus's design. The entire parsing and graph construction process executes locally in the user's browser or terminal runtime. Source code is never uploaded to remote servers or third-party databases. GitNexus acts as an MCP server, allowing AI coding tools Claude Code, Cursor, Kiro to query repository structure programmatically. Agents can perform blast-radius checks and dependency queries before applying code modifications. Traditional RAG systems rely purely on vector similarity, which often misses precise code dependencies. GitNexus combines AST parsing with graph retrieval, ensuring AI models receive exact call hierarchies. GitNexus supports both browser exploration and command-line automation: Explore online instantly: Open https://gitnexus.vercel.app in your browser Or run locally via CLI: npx gitnexus By providing AI agents with structural awareness, GitNexus eliminates blind code edits and enhances codebase navigation. It represents a vital evolution in local, privacy-first developer infrastructure. Want to turn your repository into a knowledge graph? Check out the GitNexus GitHub Repository.