project-rag

Brainwires/project-rag
★ 11 stars Rust 🤖 AI/LLM Updated 9d ago
A Rust-based Model Context Protocol (MCP) server that provides AI assistants with powerful RAG (Retrieval-Augmented Generation) capabilities for understanding massive codebases. Index codebases with FastEmbed + LanceDB, semantic code and git history searches with hybrid vector + BM25.
View on GitHub →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "project-rag": {
      "command": "cargo",
      "args": [
        "run",
        "--",
        "project-rag"
      ]
    }
  }
}