🦀 High-performance local RAG server in Rust that integrates with Claude Desktop via MCP. Search PDF documents privately using Ollama embeddings - no external API calls.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"rust-local-rag": {
"command": "cargo",
"args": [
"run",
"--",
"rust-local-rag"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add rust-local-rag cargo run -- rust-local-rag
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"rust-local-rag": {
"command": "cargo",
"args": [
"run",
"--",
"rust-local-rag"
]
}
}
}
📋 Copy