vectorise-mcp
Local MCP server that indexes folders of documents into a hybrid vector + keyword search index for Claude Desktop, with support for PDFs, Office files, and images via OCR.
README
vectorise-mcp
Local MCP server that turns folders of documents into a hybrid vector + keyword index that Claude Desktop can search. Stays offline after first model download.
Stack
- MCP:
mcp(FastMCP), stdio transport - Embeddings:
BAAI/bge-small-en-v1.5(384-dim) - Reranker:
BAAI/bge-reranker-basecross-encoder - Vector DB:
sqlite-vec - Keyword DB: SQLite FTS5 (BM25)
- Fusion: Reciprocal Rank Fusion → cross-encoder rerank
Install
pip install vectorise-mcp # core
pip install "vectorise-mcp[ocr]" # + OCR for scanned PDFs / images
pip install "vectorise-mcp[notify]" # + desktop toast on job completion
pip install "vectorise-mcp[ocr,notify]" # everything
vectorise-mcp setup # pre-download models (~250MB)
Python ≥ 3.10.
Wire into Claude Desktop
claude_desktop_config.json:
{
"mcpServers": {
"vectorise": {
"command": "vectorise-mcp",
"args": ["serve"]
}
}
}
Config file location:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Restart Claude Desktop.
File support
| Format | Notes |
|---|---|
.pdf |
text + OCR fallback for scanned pages |
.docx, .pptx, .xlsx, .xlsm, .xls |
full content + tables |
.txt, .md, .markdown |
UTF-8 |
.png, .jpg, .jpeg, .tiff, .bmp, .webp |
OCR (requires [ocr]) |
.doc, .ppt |
detected, skipped, reported |
Tools exposed to Claude
| Tool | What it does |
|---|---|
vectorise_list_projects |
list all indexed projects |
vectorise_index_project(folder, project, mode) |
start indexing job, returns job_id instantly |
vectorise_reindex_project(project) |
SHA1-incremental rescan of all sources |
vectorise_index_status(job_id) |
instant job snapshot incl. progress + ETA |
vectorise_await_index(job_id, timeout_sec) |
optional blocking wait |
vectorise_list_jobs(active_only) |
jobs from current server session |
vectorise_search(project, query, k, candidate_pool, file_glob, subdirectory, page_min, page_max, min_similarity) |
hybrid + reranked search |
vectorise_delete_project(project) |
delete project's .db |
mode for vectorise_index_project: auto (default — incremental if path already indexed, error on conflict) / replace / append / fail.
Architecture
Indexing job runs in a daemon thread with its own asyncio loop. The MCP server's main loop stays free to serve index_status / search calls regardless of how heavy the embedding/OCR work is. Status calls are instant; search works on the partial index while a job is running.
folder
↓ parsers.parse (.pdf .docx .pptx .xlsx ...)
chunks (sentence-aware, 384 tok / 96 overlap, single-sentence hard-split)
↓ embedder.embed_passages (BGE-small)
sqlite-vec + FTS5 (BM25) ← per-file SHA1 dedup, basename collision auto-rename
↓ search (vector top-N + BM25 top-N)
RRF fusion → cross-encoder rerank → top-K
Project DBs live in ~/.vectorise-mcp/<name>.db. Self-contained — source folder can be deleted after indexing.
Config (env vars)
| Var | Default | Purpose |
|---|---|---|
VECTORISE_MCP_EMBED_MODEL |
BAAI/bge-small-en-v1.5 |
must be 384-dim |
VECTORISE_MCP_RERANKER_MODEL |
BAAI/bge-reranker-base |
|
VECTORISE_MCP_EMBED_BATCH |
32 |
|
VECTORISE_MCP_RERANKER_BATCH |
16 |
|
VECTORISE_MCP_OCR_MIN_CONFIDENCE |
0.5 |
drop OCR lines below |
VECTORISE_MCP_OCR_WORKERS |
4 |
parallel page OCR threads |
VECTORISE_MCP_OCR_DPI |
200 |
PDF rasterisation DPI |
VECTORISE_MCP_OCR_MAX_DIM |
4000 |
downscale huge images before OCR |
VECTORISE_MCP_NOTIFY |
1 |
desktop toast on/off |
Performance
| CPU | GPU | |
|---|---|---|
| Indexing throughput | ~80 chunks/sec | 5–10× faster |
| Search latency (k=5, ≤500K chunks) | ~150ms | similar |
| Disk per chunk | ~2 KB | |
| Cold start | ~5s (lazy model load) |
Local dev
git clone https://github.com/jameslovespancakes/Vectorised-Embedding-MCP
cd Vectorised-Embedding-MCP
pip install -e ".[ocr,notify]"
# tests bypass MCP transport, drive indexer + tools directly
python tests/smoke_test.py
python tests/smoke_test_projects.py
python tests/smoke_test_jobs.py
python tests/smoke_test_filters.py
python tests/smoke_test_office.py
python tests/smoke_test_chunking.py
python tests/smoke_test_legacy_skip.py
License
MIT.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。