Built a local-first context engine for AI coding agents — symbol graph + semantic search, no cloud

Reddit r/artificial Tools

Summary

Argyph is an open-source MCP server that provides AI coding agents with structured codebase understanding via a symbol graph and semantic search, running entirely locally with no cloud dependencies.

Sharing a project I've been building: **Argyph**, an **MCP** **server** that gives AI coding agents (Claude, or anything that speaks MCP) structured and semantic **understanding** of a **codebase**. The problem: agents are good at reasoning but bad at retrieval. They grep, guess, and pull whole files into a limited context window. Most context tools that try to fix this depend on a cloud vector database and a remote embedding API. Argyph runs entirely locally — single binary, embedded vector store, bundled embedding model, no API key. It builds a three-tier index (file inventory → tree-sitter symbol graph → embeddings), each tier usable before the next finishes, so the agent can query almost immediately. It's read-only by design — never edits, commits, or runs code. Open source, Rust, MIT/Apache-2.0. **GitHub:** [**https://github.com/Ezzy1630/argyph**](https://github.com/Ezzy1630/argyph)
Original Article

Similar Articles

I built an Code context graph for Agentic Coding

Reddit r/ArtificialInteligence

The author built a code context graph parser that creates a graph from static analysis and exposes it via MCP for AI agents. In a head-to-head comparison with Gemma 4 26B, agents using the graph explored Apache Kafka's request flow in under 2 minutes, while the baseline agent without the graph ran out of rate limits in 6 minutes.