Literature Evidence MCP
Reads live Zotero metadata from a configured collection and its descendants, providing collection/item discovery and metadata lookup for literature evidence.
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., "@Literature Evidence MCPSearch my papers for 'deep learning' and show the top 3 evidence excerpts with page numbers."
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.
Literature Evidence MCP
Small, versioned evidence from your local papers—without loading the whole library into an AI conversation. Optional modules connect Zotero, writing projects, fixed-commit source code and experiment records.
中文说明 · Configuration · Tools · Release guide
Status: 0.5.0a1, an unreleased alpha candidate. Python 3.11+, macOS and Linux. Windows is not supported in this release (POSIX file locking/process management). No hosted account or API key is needed for local file access.
What it does
Search local names and cached full text; retrieve text with PDF page numbers and SHA-256 hashes. Use original page images for equations and figures with Poppler.
Return compact indexes and bounded excerpts: 4,000 text characters by default, at most 12,000 per read. Explicit continuations preserve the evidence version.
Read live Zotero metadata in one configured collection and its descendants.
Optionally read allowlisted writing files, save agreed review notes, inspect code at a fixed commit and exchange experiment plans/results.
The server does not modify papers, Zotero data, manuscript text or source code. MCP calls never launch an experiment. Enabled write tools save notes/plans only. Search is lexical, PDFs have no OCR, and conversation history is managed by your client. A cache avoids repeated extraction, not accumulated tool-result history.
Related MCP server: sovena
Try the bundled example
git clone https://github.com/phy-zhangzl/literature-evidence-mcp.git
cd literature-evidence-mcpFrom this source checkout, with uv installed:
uv sync --locked
uv run --locked literature-mcp --config config.example.json doctor
uv run --locked literature-mcp --config config.example.json serveserve defaults to stdio and waits for an MCP client. The example uses only the
synthetic document in examples/papers and writes its cache to .state/cache.
It does not use a personal Zotero library, a tunnel or an existing service config.
Install and configure
Build a wheel from a reviewed source checkout, or use a wheel attached to a future GitHub release. This candidate has not been uploaded to PyPI; do not assume the package name on a registry belongs to this project.
uv build
python3 -m venv .venv-runtime
.venv-runtime/bin/python -m pip install dist/local_literature_mcp-0.5.0a1-py3-none-any.whl
mkdir -p "$HOME/Papers"
.venv-runtime/bin/literature-mcp init --papers "$HOME/Papers"
.venv-runtime/bin/literature-mcp doctorinit creates ~/.config/literature-mcp/config.json and never overwrites an existing
file. XDG_CONFIG_HOME, LITERATURE_MCP_CONFIG or the global --config argument
can select another location. Relative paths are relative to the config file.
Use a separate config, cache, experiment store and runtime environment for each
installation. Migration from the local predecessor.
Configure your MCP client with this stdio server entry, substituting absolute paths for your runtime and config:
{
"mcpServers": {
"literature-product": {
"command": "/absolute/path/to/.venv-runtime/bin/literature-mcp",
"args": ["--config", "/absolute/path/to/config.json", "serve"]
}
}
}Client configuration formats vary; this is a common stdio entry, not an automatic
client installer. Optional local HTTP: add --transport streamable-http after
serve. It listens on 127.0.0.1, at /mcp, with the configured port. It has no
public authentication layer; do not expose it directly to the Internet.
Optional capabilities
Configuration | Tools made available |
Only | Library status, file listing, search, fetch, page images |
| Collection/item discovery and metadata sections |
| Writing context and append-only feedback |
| Fixed-commit code listing, search, reads and version context |
| Experiment index, artifact discovery and evidence reads |
Code repository + experiment store | Save agreed experiment plans |
Poppler is optional for text and required for page images. Install with
brew install poppler on macOS or your distribution's poppler-utils package on
Linux. Git is needed only for code tools. Zotero requires its desktop local API to
be enabled. See configuration and data boundaries.
The optional foamCase adapter is for existing scientific workflows. File-only users need neither it nor a simulation environment.
Development and release
uv run --locked pytest -q
uv run --locked python scripts/smoke_test.py
uv run --locked python scripts/smoke_test.py --transport http
uv build
uv run --locked python scripts/check_release.pyTests use synthetic fixtures and temporary stores. See CONTRIBUTING.md. CI checks macOS/Linux with Python 3.11–3.13; a configured workflow is not a claim that remote CI has already run. The tag workflow creates a draft GitHub prerelease; it does not publish to PyPI. See release guide.
License
MIT. Papers and research data remain under their own licenses and are not included in this repository.
This server cannot be deployed
Maintenance
Related MCP Connectors
Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.
Machine-native research commons for agent evidence, discovery, rooms, and bounded research quests.
Cited, versioned knowledge for agents: retrieve sourced passages and propose owner-approved fixes.
Retrieve citation-ready technical context and coordinate evidence-backed work between AI agents.
Related MCP Servers
- AlicenseBqualityBmaintenanceEnables local agents to search and retrieve cited evidence from PDFs and Markdown notes, including page-specific passages and rendered page images.6GPL 3.0
- AlicenseNot gradedqualityAmaintenanceEnables AI clients to search a local literature library via vector semantic retrieval, with automatic conversion of Zotero items and arbitrary files into Markdown (including OCR for scanned PDFs). It supports natural language queries and provides answers with page-level citations.7MIT
- AlicenseAqualityCmaintenanceEnables local-first hybrid knowledge retrieval from authorized Markdown and plain-text files, combining full-text and vector search with reranking and traceable source references via a single search tool.1MIT
- AlicenseAqualityBmaintenanceEnables AI writing assistants to retrieve citable evidence from local PDFs and verify draft citations against their sources locally, providing verifiable support for claims.21MIT