zotero-mcp
MCP server that connects AI assistants to your Zotero library, enabling full-text PDF extraction and metadata search.
README
Zotero MCP Server
An MCP server that connects AI assistants to your Zotero library — including full-text PDF extraction. Search papers, browse collections, pull citations, and read the actual content of your PDFs, all from within Claude Code or any MCP-compatible client.
What makes this different
Most Zotero integrations only give you metadata. This one downloads your PDFs from Zotero cloud and extracts the full text using pymupdf, so your AI assistant can actually read your papers.
Setup
1. Get your Zotero credentials
- API Key: Go to https://www.zotero.org/settings/keys/new and create a key with read access
- User ID: Shown at https://www.zotero.org/settings/keys — the number at the top
2. Install dependencies
pip3 install httpx "mcp[cli]" pydantic pymupdf
3. Add to Claude Code
claude mcp add zotero-mcp \
--command python3 \
--args "/path/to/zotero-mcp/server.py" \
--env ZOTERO_API_KEY=your_api_key_here \
--env ZOTERO_USER_ID=your_user_id_here
Or add manually to ~/.claude.json:
{
"mcpServers": {
"zotero-mcp": {
"command": "python3",
"args": ["/path/to/zotero-mcp/server.py"],
"env": {
"ZOTERO_API_KEY": "your_api_key_here",
"ZOTERO_USER_ID": "your_user_id_here"
}
}
}
}
4. Restart Claude Code and test
Search my Zotero library for PCSK9
Tools
| Tool | What it does |
|---|---|
zotero_search_library |
Full-text search across titles, authors, abstracts, tags |
zotero_get_item |
Full metadata for a specific item by key |
zotero_get_fulltext |
Download PDF and extract full text (with optional page ranges) |
zotero_list_attachments |
List all attachments (PDFs, snapshots) for an item |
zotero_list_collections |
List all your collections (folders) |
zotero_get_collection_items |
Browse papers in a collection |
zotero_search_by_tag |
Find papers with a specific tag |
zotero_get_recent_items |
Most recently added papers |
zotero_list_tags |
All tags with item counts |
zotero_get_citation |
Formatted citation (Vancouver, APA, AMA, NEJM, Chicago) |
Example prompts
Search my Zotero for PCSK9 heart failure papers
Get the full text of item AB12CD34
Read pages 1-5 of that paper
What papers do I have on statin intolerance?
List my Zotero collections
Show me papers tagged 'key paper'
Cite item AB12CD34 in Vancouver style
What did I add to Zotero recently?
Notes on full-text extraction
- PDFs must be synced to Zotero cloud (not just linked locally). If you see "linked file" errors, right-click the attachment in Zotero desktop and select "Convert Linked File to Stored File", then sync.
- Large papers can be read in chunks using
page_startandpage_endparameters. - Text extraction uses pymupdf which handles multi-column academic layouts well.
Requirements
- Python 3.10+
- A Zotero account with API access enabled
- Zotero cloud storage (free tier: 300MB, or paid plans for more)
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.