A CLI tool for personal RAG that retrieves data from Notion, Obsidian, Apple Notes, etc., stored in Qdrant and exposed as an MCP server.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"wandering-rag": {
"env": {
"PATH": "<your home folder>/.local/bin:/usr/bin:$PATH"
},
"args": [
"mcp",
"run-server"
],
"command": "<your git checkout path>/wandering-rag/wandering-rag"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A CLI tool for personal RAG that retrieves data from Notion, Obsidian, Apple Notes, etc., stored in Qdrant and exposed as an MCP server.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / data
Dynamic problem-solving through sequential thought chains
Query and manage PostgreSQL databases directly from AI assistants
Persistent memory using a knowledge graph
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for Wandering Rag and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A CLI tool for personal RAG that retrieves data from Notion, Obsidian, Apple Notes, etc., stored in Qdrant and exposed as an MCP server.
(So that Claude Desktop successfully answers my question "When did I adopt my cat and when did I change her cat litter most recently? ")
Using uv (recommended):
uv pip install -e .
Run a Qdrant server if you don't have one:
cd qdrant-docker
docker-compose up -d
Copy .env.example as .env and specify the Markdown folders (or Obsidian vaults)
The CLI provides several subcommands:
./wandering-rag md index
./wandering-rag notion index
./wandering-rag mcp run-server
{
"mcpServers": {
"wandering-rag": {
"command": "<your git checkout path>/wandering-rag/wandering-rag",
"args": ["mcp", "run-server"],
"env": {
"PATH": "<your home folder>/.local/bin:/usr/bin:$PATH"
}
}
}
}