Skip to content

Memgraph IngesterStructure-aware RAG for code and project knowledge

Make agents smarter, index local source files into Memgraph so AI agents can discover symbols, follow relationships, search semantic code chunks, and keep durable project memory.

Memgraph Ingester banner

The Short Version

Memgraph Ingester turns a repository into a queryable code graph for AI-assisted development. Instead of making an agent repeatedly scan files, you can give it indexed structure, semantic retrieval, source ranges, call edges, type relationships, and project memories.

bash
docker run -p 7687:7687 -p 7444:7444 --name memgraph memgraph/memgraph-mage:3.9.0

memgraph-ingester \
  --source . \
  --bolt bolt://localhost:7687 \
  --project my-project \
  --wipe-project-code \
  --init-instructions \
  --apply-schema

Then connect your agent through memgraph-ingester-mcp and ask questions about the codebase through graph-aware tools.

Released under the MIT License.