Lightweight RAG server for the Model Context Protocol: ingest source code, docs, build a vector index, and expose search/citations to LLMs via MCP tools.
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": {
"mcp-rag-server": {
"command": "npx",
"args": [
"-y",
"Daniel-Barta/mcp-rag-server"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add mcp-rag-server npx -y Daniel-Barta/mcp-rag-server
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-rag-server": {
"command": "npx",
"args": [
"-y",
"Daniel-Barta/mcp-rag-server"
]
}
}
}
📋 Copy