vectordb-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@vectordb-mcpsearch for neural network basics"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
vectordb-mcp
Local RAG over your own files, exposed to Claude Desktop and Claude Code as
an MCP server. Chunking via LangChain's RecursiveCharacterTextSplitter,
embeddings via jinaai/jina-embeddings-v5-text-nano (local, no API key),
vectors in FAISS, text/metadata in SQLite.
Setup
cd vectordb-mcp
python -m venv .venv
.venv\Scripts\Activate.ps1
pip install -r requirements.txtFirst run downloads the embedding model (~1GB) from Hugging Face and caches
it locally (%USERPROFILE%\.cache\huggingface).
Data files (data/vectordb.sqlite3, data/<collection>.index) are created
under the project's data/ folder on first use — nothing global, easy to
wipe by deleting the folder.
Related MCP server: smart-search
Register with Claude Desktop
Edit %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"vectordb-mcp": {
"command": "C:\\Users\\Kiran\\OneDrive\\Desktop\\Projects\\vectordb-mcp\\.venv\\Scripts\\python.exe",
"args": ["C:\\Users\\Kiran\\OneDrive\\Desktop\\Projects\\vectordb-mcp\\run.py"]
}
}
}Restart Claude Desktop; the three tools (ingest_local_document,
vector_search, manage_collections) should appear under the hammer icon.
Register with Claude Code
From the project directory (or any directory, using absolute paths):
claude mcp add vectordb-mcp -- "C:\Users\Kiran\OneDrive\Desktop\Projects\vectordb-mcp\.venv\Scripts\python.exe" "C:\Users\Kiran\OneDrive\Desktop\Projects\vectordb-mcp\run.py"Verify with claude mcp list / /mcp inside a session.
Tools
ingest_local_document(filepath, collection_name="main", chunk_size=512, chunk_overlap=50)
vector_search(query, collection_name="main", top_k=5)
manage_collections(action: "list" | "delete" | "reset", collection_name=None)
Deduplication
Two layers, see vectordb_mcp/dedup.py:
Ingestion-time (exact): each chunk is hashed (normalized, sha256) and checked against a
UNIQUE(collection, content_hash)index in SQLite. Duplicate content (repeated boilerplate/footers across files) is embedded and stored once; re-ingesting the same or overlapping content just links the new source file to the existing chunk row.Retrieval-time (exact + near-duplicate):
vector_searchover-fetches candidates from FAISS, drops exact hash repeats as a safety net, and also drops near-duplicates via word-shingle Jaccard similarity (default threshold 0.7) so overlap-adjacent chunks that differ by only a few words don't both make it into thetop_kresults returned to Claude.
This server cannot be deployed
Maintenance
Related MCP Connectors
Ingest, manage, and retrieve documents for RAG-powered AI applications
Cloud or self-hosted knowledge for AI agents: hybrid search, reranking, GraphRAG, scoped MCP tools.
Private persistent memory for Claude, ChatGPT & Gemini via MCP - semantic search, zero-code setup.
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA local vector database RAG system that integrates with Playwright MCP for web scraping, enabling users to build searchable knowledge bases from web content with multiple embedding providers and Claude-optimized context formatting.-
- FlicenseNot gradedqualityDmaintenanceA local-first MCP server that enables semantic search over PDF and DOCX documents using structure-aware parsing and vector storage. It allows users to query their local knowledge base through Claude Code without cloud dependencies or GPU requirements.-
- AlicenseAqualityCmaintenanceOffline RAG MCP server that indexes documents into SQLite with hybrid vector and lexical search, and enables natural language queries via Claude.4MIT
- AlicenseNot gradedqualityCmaintenanceA privacy-preserving local RAG system integrated with MCP, enabling natural language queries over ingested documents and a SQLite database through vector search and local database tools.MIT