AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

ZoteroMCP

mcp-levinthedoctor-zoteromcp · by LevinTheDoctor

MCP Server that connects Zotero's local API with Claude Desktop

No reviews yet
0 installs
28 views
0.0% view→install

Install

$ agentstack add mcp-levinthedoctor-zoteromcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-levinthedoctor-zoteromcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of ZoteroMCP? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Zotero MCP – Setup

> Connect Zotero to Claude via a local MCP server and access your reference manager directly.


Prerequisites

  • Zotero is installed and running
  • Node.js is installed (verify with node --version)
  • The ZoteroMCP project is cloned and available locally

Step 1 – Enable the Local API in Zotero

  1. Open Zotero
  2. Open Preferences via the menu or the shortcut:

`` Cmd + , ``

  1. Navigate to Advanced → Miscellaneous
  2. Enable the following option:

> ✅ Allow other applications on this computer to communicate with Zotero

The local API URL will then be displayed, for example:

`` http://localhost:23119/api/ ``

> Tip: Note down the port number — you'll need it in the next step.


Step 2 – Connect the API to the Project

Create the file src/config.ts in the project directory and replace the placeholders with your actual URL from Zotero:

// src/config.ts

export const API_CONFIG = {
  baseUrl: "http://localhost:23119/api", // Use the port from your Zotero settings
  userPrefix: "users/0",                 // Local user (default: 0)
  timeout: 500,                          // Timeout in milliseconds
};

Step 3 – Build the Project

Navigate to the project directory and run the build command:

# Navigate to the project directory
cd /path/to/project/ZoteroMCP

# Install dependencies (only required once)
npm install

# Build the project
npm run build

> Alternative: In Visual Studio Code you can run the build directly via the integrated terminal or a tasks.json configuration.

After the build, the compiled file will be available at dist/index.js.


Step 4 – Register the MCP Server in Claude Desktop

For Claude to recognize the MCP server, the Claude Desktop configuration file needs to be updated.

Path to the configuration file:

/Users/YOUR-USERNAME/Library/Application Support/Claude/claude_desktop_config.json

Add the following block to the mcpServers object:

{
  "mcpServers": {
    "zotero": {
      "command": "node",
      "args": ["/absolute/path/to/project/ZoteroMCP/dist/index.js"]
    }
  }
}

> Important: Always use the absolute path to dist/index.js — relative paths are not reliably resolved here.

Restart Claude Desktop after saving the change for the MCP server to be picked up.


Troubleshooting

| Problem | Likely Cause | Solution | |---|---|---| | API not reachable | Zotero is not running | Start Zotero and verify the API option is enabled | | Wrong port | Port has changed | Check the port in Zotero settings and update config.ts | | MCP not recognized | Incorrect path in JSON | Use the absolute path to dist/index.js | | dist/index.js missing | Build was not run | Run npm run build again |


Project Structure (after build)

ZoteroMCP/
├── src/
│   ├── config.ts        # API configuration
│   └── index.ts         # MCP server entry point
├── dist/
│   └── index.js         # Compiled output (used by Claude)
├── package.json
└── tsconfig.json

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.