Zotero MCP

Created By
BirdInTheTree3 months ago
Read+write MCP server for Zotero with full write support — create items, manage collections, find and merge duplicates, import BibTeX
Overview

zotero-mcp

Read+write MCP server for Zotero. An MCP server with full write support for managing Zotero library from AI assistants.

It lets you create items, manage collections, find and merge duplicates, and import BibTeX from within Claude Code/Desktop, or any MCP-compatible client.

Uses the Zotero Web API (requires API key). Get the key at https://www.zotero.org/settings/keys.

Features

Search & Read

ToolDescription
search_itemsFull-text search with collection, type, and tag filters
get_itemDetailed metadata or BibTeX export for a single item
get_collectionsList all collections with hierarchy and item counts
get_collection_itemsList items in a specific collection
find_duplicatesFind duplicates by title/DOI, or scan entire library
get_tagsList all tags with item counts

Write

ToolDescription
create_itemCreate item from field data
create_item_from_doiCreate item by DOI (auto-fills metadata via Zotero translator + CrossRef)
import_bibtexImport BibTeX entries into a collection
update_itemUpdate item fields with version conflict protection

Collections

ToolDescription
create_collectionCreate a collection (with optional parent)
add_to_collectionsAdd an item to multiple collections at once
remove_from_collectionRemove item from collection (doesn't delete it)

Management

ToolDescription
merge_duplicatesMerge duplicates: transfer metadata, tags, collections to keeper, delete rest
delete_itemDelete an item

Installation

Requires Python 3.11+ and uv.

# Clone the repo
git clone https://github.com/BirdInTheTree/zotero-mcp.git
cd zotero-mcp
uv sync

Usage

Claude Code

claude mcp add zotero \
  -e ZOTERO_API_KEY=your-key \
  -e ZOTERO_USER_ID=your-user-id \
  -- uv run --directory /path/to/zotero-mcp python -m zotero_mcp

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "zotero": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/zotero-mcp", "python", "-m", "zotero_mcp"],
      "env": {
        "ZOTERO_API_KEY": "your-key",
        "ZOTERO_USER_ID": "your-user-id"
      }
    }
  }
}

Configuration

VariableRequiredDescription
ZOTERO_API_KEYyesZotero Web API key
ZOTERO_USER_IDyesYour Zotero user ID

Get your API key at https://www.zotero.org/settings/keys. Your user ID is shown on the same page.

Examples

Once connected, you can ask your AI assistant things like:

  • "Search my Zotero for papers ..."
  • "Create a new collection called ..."
  • "Import this BibTeX into my collection"
  • "Find duplicate items in my library and merge them"
  • "Add this paper to both collections"
  • "Look up DOI 10.1234/example and add it to my library"

Development

# Install with dev dependencies
uv sync --dev

# Run tests
uv run pytest tests/ -v

License

MIT

Server Config

{
  "mcpServers": {
    "zotero": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/path/to/zotero-mcp",
        "python",
        "-m",
        "zotero_mcp"
      ],
      "env": {
        "ZOTERO_LOCAL": "true"
      }
    }
  }
}
Project Info
Created At
3 months ago
Updated At
2 months ago
Author Name
BirdInTheTree
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Bring your real authenticated browser session to AI coding agents. Local-first MCP server + Chrome MV3 extension. No cloud. No telemetry.
@Cubenest

peek records the user's actual logged-in browser (DOM via rrweb, console events, network metadata, optional response bodies via opt-in Deep capture) through a Chrome MV3 extension. The extension ships events through a native-messaging stdio bridge to a local MCP server (peek-mcp), which persists them to a SQLite database at ~/.peek/sessions.db. AI coding agents (Claude Code, Cursor, Cline, Windsurf) read sessions from the database via 10 MCP tools: Tool What it does list_recent_sessions List recently recorded sessions (id, origin, ts, event count). get_session_summary LLM-readable narrative summary of a session. get_session_console_errors Console errors recorded in a session. get_session_network_errors Failed/notable network requests in a session. get_user_action_before_error Last N user actions before a console error. generate_playwright_repro Generate a runnable Playwright test from a session. get_dom_snapshot Reconstruct the DOM at a given timestamp. query_dom_history Timeline of attribute/text changes for a selector. request_authorization Side-panel consent for write actions (Level 3). execute_action Dispatch a UI action (gated by permission level + destructive blocklist). Why local-first matters Every other "browser session for AI" tool ships to a vendor cloud. peek's SQLite + extension live on the user's machine — no remote endpoints, no telemetry. The privacy policy (docs/peek/PRIVACY_POLICY.md) is the source of truth. Install # 1. Add the MCP server to Claude Code claude mcp add peek -- npx -y @peekdev/mcp # 2. Install the Chrome extension from the Chrome Web Store # (link added once the CWS listing is approved)

a day ago