@AriXZone: The Linux kernel, a very large project with 28 million lines of code and 75,000 files, takes only about 3 minutes to index, with sub-millisecond query responses. codebase-memory-mcp is an open-source MCP server from DeusData that provides AI coding assistants (Claude Cod…

X AI KOLs Timeline Tools

Summary

DeusData has open-sourced an MCP server called codebase-memory-mcp, which pre-parses code repositories into persistent knowledge graphs, providing AI coding assistants with sub-millisecond code structure query capabilities. It supports 158 languages, reduces token consumption by approximately 99% compared to traditional grep, and has extremely fast indexing speed.

The Linux kernel, a very large project with 28 million lines of code and 75,000 files, takes only about 3 minutes to index, with sub-millisecond query responses. codebase-memory-mcp is an open-source MCP server from DeusData that provides AI coding assistants (Claude Code, Cursor, and 11 other agents) with code structure understanding. It pre-parses code repositories into persistent knowledge graphs, allowing agents to use graph queries instead of per-file reading and grep. Key Features: Based on tree-sitter, it supports parsing 158 languages, with mainstream languages (Python/TS/JS/Go/Java/C++/Rust, etc.) additionally using Hybrid LSP for semantic type resolution, building graphs of functions, classes, call chains, HTTP routes, and cross-service relationships. Provides 14 MCP tools, including code search, call chain tracing, architecture overview, impact analysis, Cypher query, dead code detection, semantic search, etc. Highly efficient: for the same structured query tasks, token consumption is reduced by about 99% compared to traditional grep; indexing is fast, completing in seconds to minutes for typical repositories. Single static binary, zero runtime dependencies, no API Key required, no built-in LLM—only graph construction and querying; inference is still done by the calling agent. All data is processed locally, with no uploads or telemetry. Supports team sharing of compressed graph snapshots to reduce redundant indexing; provides an optional 3D graph visualization UI. Security includes SLSA L3 build provenance, Sigstore signing, SHA-256 checksums, and CodeQL scanning. Installation: one-click script on macOS/Linux, or let Claude Code directly pull the repository and build automatically; Windows requires WSL2.
Original Article
View Cached Full Text

Cached at: 07/04/26, 06:39 AM

Built-in 3D graph visualization (UI variant) — explore your knowledge graph at localhost:9749

Similar Articles

DeusData/codebase-memory-mcp

GitHub Trending (daily)

Codebase-memory-mcp is an ultra-fast code intelligence engine for AI coding agents that indexes entire repositories in milliseconds and answers structural queries in under 1ms using tree-sitter AST analysis and a persistent knowledge graph, with support for 158 languages and 14 MCP tools.

@GitHub_Daily: When using AI-assisted programming, asking a simple question requires flipping through files one by one, which wastes tokens and easily leads to wrong context. codebase-memory-mcp parses the entire codebase into a knowledge graph, allowing AI to directly 'understand' the project structure. A single executable written in pure C, zero dependencies, …

X AI KOLs Timeline

codebase-memory-mcp is a tool written in pure C that parses the entire codebase into a knowledge graph, supports 158 programming languages, is compatible with 11 AI coding agent tools, greatly improving AI's understanding of project structure and reducing token consumption.

@justloveabit: https://x.com/justloveabit/status/2055263377006747820

X AI KOLs Timeline

Introducing the new version of Claude Code 2.1.142 in combination with CodeGraph and MCP, which greatly improves the efficiency of exploring large codebases through a local semantic knowledge graph, with a 92% reduction in tool calls and a 71% speed improvement.