Back to Apps

Local RAG Search
Supports UIby nkapila6
Local-first RAG server for private document search with semantic chunking and keyword boost.
0 stars
Works in:CursorCodex
Exposes:Tools
What it does
MCP Local RAG provides a fully private, local-first Retrieval-Augmented Generation (RAG) system. It allows AI assistants to ingest and search technical documents, PDFs, and Markdown files without sending data to external APIs.
Tools
ingest_file: Indexes a local file (PDF, DOCX, TXT, MD) into the vector database.ingest_data: Indexes HTML content provided by the assistant.query_documents: Performs semantic search with keyword boosting for exact technical terms.read_chunk_neighbors: Retrieves surrounding context for a specific search result chunk.list_files: Lists all currently indexed files and their status.delete_file: Removes a specific file from the index.status: Returns system health and database statistics.
Installation
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"local-rag": {
"command": "npx",
"args": ["-y", "mcp-local-rag"],
"env": {
"BASE_DIR": "/path/to/your/documents"
}
}
}
}
Supported hosts
Confirmed for Claude Desktop, Cursor, Codex, and Claude Code.
Quick install
npx -y mcp-local-ragInformation
- Pricing
- free
- Published
- 4/17/2026
- stars
- 0
Categories
Choose your AI client and follow the steps below.
Codex
Add to ~/.codex/config.toml: [mcp_servers.local-rag]\ncommand = "npx"\nargs = ["-y", "mcp-local-rag"]\n\n[mcp_servers.local-rag.env]\nBASE_DIR = "/path/to/your/documents"Cursor
Add to ~/.cursor/mcp.json: "local-rag": {"command": "npx", "args": ["-y", "mcp-local-rag"], "env": {"BASE_DIR": "/path/to/your/documents"}}Claude Desktop
{"mcpServers": {"local-rag": {"command": "npx", "args": ["-y", "mcp-local-rag"], "env": {"BASE_DIR": "/path/to/your/documents"}}}}





