All 52 Dependencies
Every package Claude Context depends on, ranked by repo health score.
Claude Context solves the problem of coding agents losing track of a large codebase's structure by indexing it into a vector database and exposing semantic search over it via MCP, so agents like Claude Code, Cursor, and Gemini CLI can search code by meaning rather than exact string match. Instead of re-indexing the entire codebase on every change, it uses a Merkle-tree structure to detect exactly which files changed and update only those embeddings incrementally.
Built by Zilliz (the team behind the Milvus vector database), the project ships as an npm core package (`@zilliz/claude-context-core`), an MCP server package (`@zilliz/claude-context-mcp`), and a VS Code extension, giving multiple integration paths depending on whether you want IDE-native search or agent-facing MCP access. It supports OpenAI, Voyage AI, and other embedding providers rather than being locked to one.
MIT licensed, the project also points toward a sibling tool, memsearch, for persistent cross-session memory — positioning Claude Context specifically as the codebase-search layer rather than trying to also solve long-term agent memory.