This MCP server provides access to your Zotero library within AI assistants through the Model Context Protocol (MCP). It allows AI assistants to search your Zotero library, retrieve metadata, and access the full text of your documents.
This MCP server offers three primary tools:
zotero_search_items
: Search your Zotero library using text querieszotero_item_metadata
: Retrieve detailed metadata about specific Zotero itemszotero_item_fulltext
: Access the full text content of Zotero items (PDF contents)These tools return formatted text that AI assistants can use sequentially - first searching for items, then retrieving their metadata or content.
The server can connect to your local Zotero desktop application:
For access to the
/fulltext
endpoint on the local API, you currently need a Zotero Beta Build (as of 2025-03-30). This requirement will be removed when version 7.1 is released.
Alternatively, you can use the Zotero Web API:
The server uses these environment variables:
ZOTERO_LOCAL
: Set to "true" to use the local Zotero API (default: false)ZOTERO_API_KEY
: Your Zotero API key (not needed for local API)ZOTERO_LIBRARY_ID
: Your Zotero library ID (not needed for local API)ZOTERO_LIBRARY_TYPE
: Library type (user or group, default: user)uvx
with Local Zotero APITo use with Claude Desktop via uvx
:
{
"mcpServers": {
"zotero": {
"command": "uvx",
"args": ["--upgrade", "zotero-mcp"],
"env": {
"ZOTERO_LOCAL": "true",
"ZOTERO_API_KEY": "",
"ZOTERO_LIBRARY_ID": ""
}
}
}
}
The --upgrade
flag is optional and will pull the latest version when available.
To run the server in a Docker container:
{
"mcpServers": {
"zotero": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e", "ZOTERO_API_KEY=PLACEHOLDER",
"-e", "ZOTERO_LIBRARY_ID=PLACEHOLDER",
"ghcr.io/kujenga/zotero-mcp:main"
],
}
}
}
To update the Docker image, run:
docker pull ghcr.io/kujenga/zotero-mcp:main
Once configured, the Zotero MCP server becomes available to compatible MCP clients like Claude. You can:
Example queries:
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "zotero" '{"command":"uvx","args":["--upgrade","zotero-mcp"],"env":{"ZOTERO_LOCAL":"true","ZOTERO_API_KEY":"","ZOTERO_LIBRARY_ID":""}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"zotero": {
"command": "uvx",
"args": [
"--upgrade",
"zotero-mcp"
],
"env": {
"ZOTERO_LOCAL": "true",
"ZOTERO_API_KEY": "",
"ZOTERO_LIBRARY_ID": ""
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"zotero": {
"command": "uvx",
"args": [
"--upgrade",
"zotero-mcp"
],
"env": {
"ZOTERO_LOCAL": "true",
"ZOTERO_API_KEY": "",
"ZOTERO_LIBRARY_ID": ""
}
}
}
}
3. Restart Claude Desktop for the changes to take effect