scholar-rag-mcp
Click on "Install 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., "@scholar-rag-mcpsearch my knowledge base for papers on graph neural networks"
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.
scholar-rag-mcp
Status: preview release (v0.1.0). Interfaces and storage layout may change in future versions.
scholar-rag-mcp is a publishable academic-paper knowledge-base MCP tool. Point it at a folder of PDFs and it ingests each paper through a real parsing pipeline (MinerU), normalizes metadata, annotates section structure, chunks and embeds the text, and stores everything in Qdrant - after which an agent (or you) can semantically search chunks, run PubMed-style document queries, read full text section by section, add/remove single papers, and manage knowledge bases - all through 11 MCP tools over stdio. Embedding, annotation and re-ranking run on OpenAI-compatible model services (vLLM) with in-process fallbacks.
Features
Real ingestion pipeline: MinerU PDF parsing (python/cli/api backends) -> metadata extraction (local heuristics, CrossRef, optional GROBID) -> cleaning -> section annotation -> deterministic chunking (configurable 300/1500/100 chars) -> embedding.
Fast retrieval at scale: embedding first-pass + cross-encoder re-rank, optional metadata filtering (
doc_id,section,year,journal, ...) evaluated inside the Qdrant index. 100k-chunk p95 query latency < 1s (seedocs/perf-report.md).Async jobs:
create_kb/add_documentare background jobs with progress queryable viaget_job; safe to restart (interrupted jobs are recovered and skipped on re-run).Context-safe reading: paginated
get_document_textwith hard size caps; outline first, pages on demand.11 MCP tools over stdio:
list_kbs,create_kb,delete_kb(two-phase),add_document,remove_document,get_document,get_document_text,list_documents,search_documents,search_chunks,get_job.Self-contained storage: knowledge bases live under a single data directory (
~/.scholar-rag); Qdrant is either auto-launched (single binary, version-pinned) or connected to an external instance.
Related MCP server: Athena
Installation
Requires pixi. From the repository root:
pixi install # installs the default environmentThe project defines three pixi environments, each serving a different purpose:
Environment | Purpose |
| Core runtime + dev tooling (pytest/ruff/mypy). Run the MCP server and all scripts here. |
| Adds MinerU ( |
| Adds torch/transformers for in-process local model backends (falls back to downloading model weights on first use). |
Verify your environment with the built-in doctor:
pixi run python scripts/doctor.pyModel deployment
Environment ('chat', 'embed' and 'rerank' clients) expects OpenAI-compatible HTTP endpoints.
scripts/serve_models.sh launches three vLLM instances for the reference model set:
Service | Model | Port |
chat | Qwen3.5-0.8B | 8101 |
embed | jina-embeddings-v5-text-small | 8102 |
rerank | jina-reranker-v3.5 | 8103 |
# point *_MODEL at your local model directories, then:
bash scripts/serve_models.shSCHOLAR_RAG_CHAT_MODEL, SCHOLAR_RAG_EMBED_MODEL and SCHOLAR_RAG_RERANK_MODEL are
required - the script exits with a message listing them if any is unset. Each value must
be an absolute path to a local HuggingFace model directory; vLLM serves each model under a
short name equal to the directory basename, so the client settings must use that short name
(the served name no longer equals the full path). Replace the /path/to/... placeholders in
.env.example accordingly. Ports (CHAT_PORT/EMBED_PORT/RERANK_PORT) and GPU ids remain
optional with working defaults.
The script pins the exact vLLM flags verified for these models (the Jina embed model needs
--trust-remote-code for its custom code; the reranker runs with its default task, no extra
flags). Model load takes several minutes; the script polls health until all three answer.
Minimal environment
Start from .env.example and set at least the model endpoints (use the short names the
serve script exposes, equal to each model directory's basename):
SCHOLAR_RAG_DATA_DIR=~/.scholar-rag
SCHOLAR_RAG_QDRANT_STORAGE_DIR=~/.local/share/scholar-rag/qdrant
SCHOLAR_RAG_CHAT_BASE_URL=http://127.0.0.1:8101/v1
SCHOLAR_RAG_CHAT_MODEL=Qwen3.5-0.8B
SCHOLAR_RAG_EMBED_BASE_URL=http://127.0.0.1:8102/v1
SCHOLAR_RAG_EMBED_MODEL=jina-embeddings-v5-text-small
SCHOLAR_RAG_RERANK_BASE_URL=http://127.0.0.1:8103/v1
SCHOLAR_RAG_RERANK_MODEL=jina-reranker-v3.5The embed model dimension is recorded in kb_meta.json at kb creation, so changing the
embedding model later requires a new kb.
MCP client setup
Start the server entry point directly to make sure it runs:
pixi run scholar-rag-mcpClaude (Claude Desktop / claude CLI)
{
"mcpServers": {
"scholar-rag-mcp": {
"command": "pixi",
"args": ["run", "scholar-rag-mcp"]
}
}
}opencode
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"scholar-rag-mcp": {
"type": "local",
"command": ["pixi", "run", "scholar-rag-mcp"]
}
}
}Tools
Tool | Purpose |
| List knowledge bases with document/chunk counts and status. |
| Asynchronously ingest every PDF in a folder into a new kb (returns |
| Two-phase kb deletion (see below). |
| Asynchronously ingest a single PDF into an existing kb (returns |
| Synchronously delete one document (Qdrant points + catalog + files). |
| Document overview: metadata, abstract, section outline, total size. |
| Paginated full-text reading of one document or a single section. |
| Paginated browse of documents in a kb. |
| PubMed-style document-level search (FTS + title/authors/journal/year). |
| Semantic chunk search with metadata filters and embed+rerank scores. |
| Query status/progress/result/elapsed time of a background job. |
Data layout
<data_dir>/ # SCHOLAR_RAG_DATA_DIR, default ~/.scholar-rag
├── kbs/<kb_name>/
│ ├── kb_meta.json # dimension, chunk config, schema version
│ ├── catalog.sqlite3 # documents / authors / keywords / chunks + FTS5
│ └── documents/<doc_id>/ # source.pdf, full_text.md, sections.json
├── cache/parse/ # MinerU markdown cache, keyed by content hash
├── cache/resolver/ # annotation resolver cache, keyed by content hash
├── jobs.sqlite3 # async job history
└── bin/ # auto-downloaded Qdrant binary (v1.12.5)Qdrant storage lives outside data_dir at QDRANT_STORAGE_DIR (default
~/.local/share/scholar-rag/qdrant) - it must be on a local filesystem, not a 9p/network
mount.
Two-phase kb deletion
delete_kb never deletes on the first call with the wrong arguments by accident:
Call
delete_kb(kb="...")- returns kb statistics plus a 10-minuteconfirm_token.Call
delete_kb(kb="...", confirm_token="<token>")to actually delete the Qdrant collection, kb directory and its job history.
Development
pixi run lint # ruff check src tests
pixi run typecheck # mypy src
pixi run test # pytest (unit + integration, no e2e/perf)
pixi run -e mineru pytest tests/e2e/smoke.py -v -m e2e # real end-to-end smoke
python tests/perf/bench_query.py # query latency benchmark (writes docs/perf-report.md)Release notes
For known limitations and upgrade guidance see
docs/handoffs/release-notes-v0.1.0.md.
Known constraints worth repeating:
Qdrant is pinned to v1.12.5 - it is the highest version that runs on glibc 2.35; auto-launch downloads it on first use. On glibc >= 2.38 you may run a newer version, but the data format is not forward-compatible with older kbs in this release.
MinerU runs in its own pixi environment because its transformers version is mutually exclusive with the vLLM one. PDF parsing thus prefers
pixi run -e mineru.MinerU weights (~3.2 GB) download on first parse into
~/.cache/modelscope/.Metadata title heuristic: titles are only picked locally when the MinerU markdown starts with an
#/##heading, so a leading## Abstract(etc.) can be misread as the title. This affects the local-heuristic metadata tier only; the CrossRef tier (used when a DOI is found) normally corrects it.Tool dispatch: unknown extra arguments to a tool are silently ignored rather than rejected.
9p storage limit: Qdrant storage must be on a local filesystem.
Maintenance
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceTransforms PDF collections into a searchable knowledge base using TF-IDF indexing and proximity matching. It enables users to search documents, retrieve specific page content, and manage document libraries through natural language via MCP clients.5
- FlicenseNot gradedqualityBmaintenanceA local academic research assistant that indexes PDFs into a searchable vector library and exposes MCP tools for semantic search, claim extraction, contradiction detection, and multi-step research synthesis.
- FlicenseNot gradedqualityCmaintenanceIndexes PDF documents into Qdrant and exposes semantic search as MCP tools, enabling RAG-based interactions with your documents.
- FlicenseNot gradedqualityCmaintenanceProvides RAG-based knowledge retrieval and document management as MCP tools, supporting hybrid search, reranking, and retrieval process visualization.
Related MCP Connectors
Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.
Academic research MCP server for paper search, citation checks, graphs, and deep research.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/notwhiteblank/scholar-rag-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server