High-performance local RAG MCP Server written in Rust — indexes documents and code via Tree-sitter, serves relevant context to AI assistants via MCP
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"rustrag": {
"command": "cargo",
"args": [
"run",
"--",
"RustRAG"
]
}
}
}
Run in terminal:
claude mcp add rustrag cargo run -- RustRAG
Add to .cursor/mcp.json:
{
"mcpServers": {
"rustrag": {
"command": "cargo",
"args": [
"run",
"--",
"RustRAG"
]
}
}
}