Fast, Customizable & Light Zotero MCP server for AI research assistants
Project description
Zotero MCP Lite
A high-performance Model Context Protocol (MCP) server for Zotero with customizable research workflows.
- Full Local - No cloud, no API key; runs entirely via Zotero Desktop
- Atomic Tools - 9 composable tools; LLM orchestrates as needed
- MCP-Native - Works with any MCP client
- Extensible - User-editable prompts to match your research style
- Easy Deploy - Single command install, auto-detects Zotero
Architecture
flowchart LR
subgraph MCP [Zotero MCP Lite]
Read[Read Operations]
Write[Write Operations]
end
subgraph Zotero [Zotero Desktop]
LocalAPI["/api/ endpoint"]
ConnectorAPI["/connector/ endpoint"]
SQLite[(zotero.sqlite)]
end
Read -->|GET| LocalAPI
Read -->|Direct SQL| SQLite
Write -->|POST saveItems| ConnectorAPI
LocalAPI --> SQLite
ConnectorAPI --> SQLite
Quick Start
Prerequisites
- Python 3.10+
- Zotero 7+ installed (the Local API is a Zotero 7 feature; earlier versions are not supported)
Step 0: Enable Zotero Local API
The Local API allows third-party applications to communicate with Zotero. This is required.
Steps:
- Open Zotero → Edit → Settings (or Preferences on macOS)
- Go to Advanced tab
- Under General (in Zotero 7), check "Allow other applications on this computer to communicate with Zotero"
- The API will be available at
http://localhost:23119/api/
Note: The Local API requires manual enabling (unlike the browser Connector).
Step 1: Install
Recommended:
uv tool install zotero-mcp-lite
Alternative (requires Python 3.10+):
pip install zotero-mcp-lite
Alternative: Install from GitHub or source
# From GitHub (latest development version)
uv tool install "git+https://github.com/xmruuu/zotero-mcp-lite.git"
# From source (for development)
git clone https://github.com/xmruuu/zotero-mcp-lite.git
cd zotero-mcp-lite && uv sync
uv run zotero-mcp setup
# Direct run without install
uvx zotero-mcp-lite serve
Step 2: Setup
zotero-mcp setup
This detects your Zotero installation and configures MCP clients automatically.
Step 3: Connect to MCP Client
Claude Code (one command):
claude mcp add zotero -- zotero-mcp serve
Other MCP clients — add to your MCP config file:
{
"mcpServers": {
"zotero": {
"command": "zotero-mcp",
"args": ["serve"]
}
}
}
Config file locations:
claude_desktop_config.json(Claude Desktop), Settings → MCP (Cursor),~/.gemini/settings.json(Gemini CLI)
That's it! You're ready to use Zotero with AI assistants.
Remote setup (claude.ai web · Word add-in · mobile)
The default serve command uses stdio transport, which works only with locally-installed
clients (Claude Desktop, Cursor, Claude Code). To make Zotero MCP available in claude.ai
web, the Microsoft Word Claude add-in, or any other surface that runs through your
claude.ai account, the server must be reachable over HTTPS as a Custom Connector.
Two architectural realities to know up front:
- Zotero must run on the same machine as the MCP server — the server talks to Zotero's
local API at
127.0.0.1:23119. Each user runs their own server; no central hosted instance is possible. - claude.ai Custom Connectors only support OAuth (not pasted bearer tokens). This server embeds a small OAuth 2.1 authorization server with both DCR (RFC 7591) and CIMD support so claude.ai's connector flow works out of the box.
Quickest path: the wizard
zotero-mcp setup --remote
This will:
- Download
cloudflaredif it isn't already on your system (cached under your user data dir). - Generate a random admin password and write it to
.env(or reuse the existing one). - Start a Cloudflare tunnel and capture the public
*.trycloudflare.comURL. - Start the MCP server with OAuth enabled.
- Print the connector URL to paste into claude.ai → Settings → Connectors → Add custom connector. When the login page appears in your browser, enter the password from step 2.
- Watch for the OAuth handshake to complete and print Connected!
Leave the window open — closing it stops the tunnel and the server. For a long-running deployment, run as a system service.
Manual setup
Prefer to wire things yourself? Set both environment variables in .env:
ZOTERO_MCP_ADMIN_PASSWORD=<a long random string>
ZOTERO_MCP_PUBLIC_URL=https://<your-tunnel-url>
Start a tunnel of your choice:
| Tunnel | Why |
|---|---|
| Cloudflare Tunnel | Free, stable URL, no signup needed for *.trycloudflare.com. cloudflared tunnel --url http://localhost:8000 |
| ngrok | Easiest for a quick test. Free tier rotates the URL each restart. ngrok http 8000 |
| Tailscale Funnel | Free, gives a stable *.ts.net HTTPS URL. Requires a Tailscale account. |
Then run the server:
zotero-mcp serve --transport streamable-http --port 8000
Add the public URL (with /mcp path) on claude.ai: Settings → Connectors → Add custom
connector.
Security caveats
- The admin password is the only thing protecting your Zotero library on the public
internet. Use a strong random password. The
.envfile is sensitive — keep its file permissions tight, do not commit it. --no-authexists as an escape hatch for local debugging. Never expose an unauthenticated server through a tunnel — anyone with the URL can read and write your Zotero library (includingzotero_create_note).- OAuth tokens persist in a SQLite file under your user data directory. Delete that file to effectively log out claude.ai everywhere.
Features
9 Atomic MCP Tools
Search and Navigation
zotero_search_items- Keyword search with tag filteringzotero_get_recent- Recently modified/added items (excludes notes by default)zotero_get_collections- List all collectionszotero_get_collection_items- Items in a collection (excludes notes by default)zotero_search_annotations- Search highlights across library (PDF, EPUB, snapshot)
Content Reading
zotero_get_item_metadata- Metadata, authors, abstract, tagszotero_get_item_children- Attachments, notes, and annotations (PDF/EPUB/snapshot)zotero_get_item_fulltext- Full text extraction
Writing (via local Connector API)
zotero_create_note- Create note with full formatting support (tables, lists, line breaks)
4 Research Skills (MCP Prompts)
Pre-defined workflows that guide AI through common academic tasks:
| Skill | Use Case | What It Does |
|---|---|---|
knowledge_discovery(query) |
Explore a topic | Searches titles AND your annotations |
literature_review(item_key) |
Deep-dive one paper | Structured analysis from annotations or full text |
comparative_review(item_keys) |
Compare papers | Table-rich synthesis with insights |
bibliography_export(item_keys) |
Prepare citations | APA, IEEE, and BibTeX formats |
Works with or without annotations. Fully customizable. See Customizing Skills.
Debugging
Debugging MCP servers can be challenging. Use MCP Inspector:
npx @modelcontextprotocol/inspector zotero-mcp serve
This opens a web UI to test tools and prompts interactively.
Technical Notes
- Annotations: Direct SQLite query (faster than Web API, works offline)
- Cross-platform: Auto-detects Zotero on Windows, macOS, Linux
- Architecture: Read via
/api/, Write via/connector/, Annotations via SQLite
Customizing Skills
Prompts are fully customizable. Copy from the package defaults and edit:
~/.zotero-mcp/prompts/
├── literature_review.md # Single paper analysis skill
├── comparative_review.md # Multi-paper comparison skill
├── knowledge_discovery.md # Topic exploration skill
└── bibliography_export.md # Citation export skill
Loading order: User files (~/.zotero-mcp/prompts/) take priority over package defaults.
Edit the .md files to customize analysis sections, add new ones, or change the output format entirely.
Credits
Thanks to @54yyyu for the original zotero-mcp project.
License
MIT License - See LICENSE file.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zotero_mcp_lite-0.2.0.tar.gz.
File metadata
- Download URL: zotero_mcp_lite-0.2.0.tar.gz
- Upload date:
- Size: 167.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0696b7aefff8193dc4c4ad15fe3a21998820b1506f8e2666d805c816ba5cb68
|
|
| MD5 |
421b3bdf6a01a599aa9975d2591f94b4
|
|
| BLAKE2b-256 |
cbc5aa0d58823fbee87f52e73cc4f435a3a0691babb877c8703e0922609500b3
|
Provenance
The following attestation bundles were made for zotero_mcp_lite-0.2.0.tar.gz:
Publisher:
publish.yml on xmruuu/zotero-mcp-lite
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
zotero_mcp_lite-0.2.0.tar.gz -
Subject digest:
c0696b7aefff8193dc4c4ad15fe3a21998820b1506f8e2666d805c816ba5cb68 - Sigstore transparency entry: 1473217191
- Sigstore integration time:
-
Permalink:
xmruuu/zotero-mcp-lite@22915edda5ed2514ddcdfc6ea41309f9bdec8098 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/xmruuu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@22915edda5ed2514ddcdfc6ea41309f9bdec8098 -
Trigger Event:
push
-
Statement type:
File details
Details for the file zotero_mcp_lite-0.2.0-py3-none-any.whl.
File metadata
- Download URL: zotero_mcp_lite-0.2.0-py3-none-any.whl
- Upload date:
- Size: 48.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46d78ea7685bd2050dbcdc5d9284e50f89dcd820764cda46557c0d455fc47eb5
|
|
| MD5 |
8b98fd05b66b303af933df17c35e53e2
|
|
| BLAKE2b-256 |
27629f350edb44e67845ef1206e7a4e2f0308a608ba479ada47903800a9dee9c
|
Provenance
The following attestation bundles were made for zotero_mcp_lite-0.2.0-py3-none-any.whl:
Publisher:
publish.yml on xmruuu/zotero-mcp-lite
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
zotero_mcp_lite-0.2.0-py3-none-any.whl -
Subject digest:
46d78ea7685bd2050dbcdc5d9284e50f89dcd820764cda46557c0d455fc47eb5 - Sigstore transparency entry: 1473217330
- Sigstore integration time:
-
Permalink:
xmruuu/zotero-mcp-lite@22915edda5ed2514ddcdfc6ea41309f9bdec8098 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/xmruuu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@22915edda5ed2514ddcdfc6ea41309f9bdec8098 -
Trigger Event:
push
-
Statement type: