uv add pyzoteroorpip install pyzoteroorconda install conda-forge::pyzotero- You'll need the ID of the personal or group library you want to access:
- Your personal library ID is available here, in the section
Your userID for use in API calls - For group libraries, the ID can be found by opening the group's page:
https://www.zotero.org/groups/groupname, and hovering over thegroup settingslink. The ID is the integer after/groups/
- Your personal library ID is available here, in the section
- You'll also need† to get an API key here
- Are you accessing your own Zotero library?
library_typeis'user' - Are you accessing a shared group library?
library_typeis'group'.
Then:
from pyzotero import Zotero
zot = Zotero(
library_id, library_type, api_key
) # local=True to use a running Zotero instead of the web API
items = zot.top(limit=5)
# we've retrieved the latest five top-level items in our library
# we can print each item's item type and ID
for item in items:
print(f"Item: {item['data']['itemType']} | Key: {item['data']['key']}")Full documentation of available Pyzotero methods, code examples, and sample output is available on Read The Docs.
Passing local=True directs Pyzotero at a running Zotero installation instead of the web API. Reads do not require authentication; writes require consent via a dialog in Zotero, and a Zotero version that supports local writes:
from pyzotero import Zotero
zot = Zotero("0", "user", local=True)
auth = zot.authorize_local("My Application") # Zotero prompts the user
zot.create_items([item])A key granted with "Always Allow" can be stored and passed back later as local_api_key. Versions and keys are scoped to a single Zotero instance, identified by zot.server_id. See the local API documentation for how this works, how-to guides, and reference material.
- Using uv:
uv add pyzotero - Using pip:
pip install pyzotero - Using Anaconda:
conda install conda-forge::pyzotero
Pyzotero also provides an optional CLI and MCP server for working with a local Zotero library. Both require Zotero >= 7 (>= 10 for local writes) with local API access enabled: Zotero > Settings > Advanced > "Allow other applications on this computer to communicate with Zotero". Both are read-only unless you run pyzotero authorize, which stores a local API key. Both console scripts are installed whichever extra you choose.
Pyzotero includes an optional CLI for searching your local Zotero library, adding items to it, and managing its collections.
- Using uv:
uv add "pyzotero[cli]" - Using pip:
pip install "pyzotero[cli]" - Without installing:
uvx --from "pyzotero[cli]" pyzotero search -q "your query"
pyzotero search -q "machine learning" --json
pyzotero search -q "climate change" --fulltext
pyzotero listcollections
pyzotero authorize --app-name "My tool" # store a local API key, which the write commands need
pyzotero createitem items.json --collection FD9AUNP2 --tag "to read"Run pyzotero --help for the full list of commands, and see the CLI documentation for details of the write commands, search behaviour, and output formats.
Pyzotero includes an optional MCP server that exposes your local Zotero library and Semantic Scholar integration as tools.
- Using uv:
uv add "pyzotero[mcp]" - Using pip:
pip install "pyzotero[mcp]" - As a standalone tool:
uv tool install "pyzotero[mcp]"
Add it to your Claude Desktop configuration:
{
"mcpServers": {
"zotero": {
"command": "pyzotero-mcp"
}
}
}The server is read-only by default. Starting it with --enable-writes registers tools that create and modify items and collections, and --enable-deletes additionally registers permanent deletion. See the MCP server documentation for the configuration, the full list of tools, and how the write tools behave.
git clone git://github.com/urschrei/pyzotero.git
cd pyzotero
git checkout main
# specify --dev if you're planning on running tests
uv syncRun pytest . from the top-level directory. This requires the dev dependency group to be installed: uv sync --dev / pip install --group dev
The latest commits can be found on the main branch, although new features are currently rare. If you encounter an error, please open an issue.
Pull requests are welcomed. Please read the contribution guidelines. In particular, please base your PR on the main branch.
As of v1.0.0, Pyzotero is versioned according to Semver; version increments are performed as follows:
- MAJOR version will increment with incompatible API changes,
- MINOR version will increment when functionality is added in a backwards-compatible manner, and
- PATCH version will increment with backwards-compatible bug fixes.
Pyzotero has a DOI:
You may also cite Pyzotero using CITATION.cff.
A sample citation (APA 6th edition) might look like:
Stephan Hügel, The Pyzotero Authors (2019, May 18). urschrei/pyzotero: Version v1.3.15. http://doi.org/10.5281/zenodo.2917290
Pyzotero is licensed under the Blue Oak Model Licence 1.0.0. See LICENSE.md for details.
† This isn't strictly true: you only need an API key for personal libraries and non-public group libraries.