research-digest
Fetches recent papers from specified arXiv categories, builds a personal searchable library, and provides tools for ranking papers against topics, finding similar papers, tracking trends, saving papers, and suggesting unread reading material.
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., "@research-digestsearch my library for agent evaluation papers and show the score breakdown"
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.
research-digest
A personal library of arXiv papers that your AI assistant can read.
It fetches papers in the categories you care about, ranks them against your topics, and exposes the result to any MCP client. Claude Code can then answer "what have I read about evaluation harnesses" from your own library instead of from the open web.
Nothing leaves your machine. There is no account, no API key, and no server.
Install
git clone https://github.com/dneish2/research-digest-mcp
cd research-digest-mcp
pip install -e .That gives you search, saved papers, trends and the web interface with no third-party dependencies at all.
Similarity search ("find papers like this one") needs numpy and scikit-learn:
pip install -e ".[embeddings]"Related MCP server: mcp-arxiv
Build your library
research-digest fetch # pull recent papers from arXiv
research-digest embed # optional: build vectors for similarity search
research-digest status # see what you havefetch is safe to run daily. It only adds papers you have not seen. Run it a
few times over a week and the trends view starts to mean something.
Use it
research-digest search agentic evaluation
research-digest web # browser interface on localhostConnect it to Claude Code
claude mcp add research-digest -- research-digest mcpThen ask Claude things like "search my library for retrieval papers" or "what have I saved about multi-agent systems".
For a client that wants JSON configuration instead:
{
"mcpServers": {
"research-digest": {
"command": "research-digest",
"args": ["mcp"]
}
}
}Check it responds:
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | research-digest mcpThe tools
Tool | What it does |
| Keyword search, with the score breakdown for every hit |
| Nearest papers by embedding similarity |
| Concepts rising and falling across the last two weeks |
| Your bookmarked papers and notes |
| Unread papers on a topic, best first |
| Paper count, date range, embedding health |
How ranking works
No model decides the order. The score is arithmetic you can check:
a multi-word topic appearing verbatim | 1.00 |
a single distinctive word | 0.60 |
a single common word | 0.20 |
three or more of your topics matched | +0.30 |
exactly two matched | +0.15 |
published today, decaying to zero over 30 days | +0.20 |
The 0.20 for common words is the part that matters. A word like "learning" appears in nearly every paper in this field, so matching it tells you almost nothing. Without that discount the ranking fills up with noise.
Every result carries its own derivation, in the MCP response and in the web interface. The "How scoring works" tab lets you edit a title, an abstract and your topic list, and watch the arithmetic change.
Configuration
Settings live in settings.json inside your data directory:
research-digest config # show current settings
research-digest config --add-category cs.CV # track another arXiv category
research-digest config --add-topic "world model"Setting | Default |
|
|
| agent, evaluation, reasoning, retrieval, multi-agent, reliability, interpretability |
| 60 |
|
|
Data lives in ~/.research-digest by default. Point RESEARCH_DIGEST_HOME
somewhere else if you prefer:
export RESEARCH_DIGEST_HOME=~/notes/papers # macOS, Linux
$env:RESEARCH_DIGEST_HOME = "$env:APPDATA\research-digest" # WindowsThe directory holds archive.json, saved.json, settings.json and, if you
built them, embeddings.db.
A note on the embeddings
The default encoder is TF-IDF followed by SVD. It is fitted to your corpus, which means the 384 columns it produces are derived from the particular set of papers it saw. Vectors from two different fits are not comparable, even when both are 384 wide.
So research-digest embed always rebuilds the whole store in one pass, and the
store records which fit produced every row. If it ever finds more than one, it
refuses to compare them and tells you to re-embed rather than returning
confident nonsense.
If you would rather have a fixed basis that survives incremental updates,
install sentence-transformers and run research-digest embed --engine minilm.
That downloads about 90 MB the first time.
Development
pip install -e ".[dev]"
python -m unittest discover -s tests -vThe MCP server is plain JSON-RPC over stdin and stdout, about 300 lines, with no SDK. One JSON object per line each way, which makes it easy to drive from a shell script when something looks wrong.
License
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.
Academic literature search, retrieval, and private library management on top of OpenAlex.
Personal knowledge base MCP server with semantic search, auto-categorization, metadata extraction
Persistent, portable memory for AI assistants — your private memory graph, from any MCP client.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server that provides AI assistants with a seamless, programmatic interface to search and read academic papers from the open-access arXiv repository.2MIT
- FlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI assistants to search arXiv papers, retrieve metadata, and access PDFs.-
- FlicenseAqualityBmaintenanceEnables semantic search across personal PDF paper collections with page-level citations, allowing users to query their library from any MCP-capable client.9-
- AlicenseAqualityBmaintenanceAn MCP server that enables searching arXiv, importing papers, enriching with citation data, generating summaries and research ideas, and querying a local library using local LLMs and embeddings.91MIT
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/dneish2/research-digest-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server