MCP Catalogs
Home

zotero-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

zotero-mcp
by cookjohn
everything
by modelcontextprotocol
Stars★ 784★ 85,748
30d uses
Score5477
Official
Categories
AI / LLM ToolsProductivityKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

zotero-mcp · Summary

Zotero MCP plugin integrates AI assistants with Zotero reference management via MCP protocol, providing search, annotation analysis, content extraction, and write operations.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

zotero-mcp · Use cases

  • Literature review and analysis by directly querying your Zotero library
  • Content analysis of PDFs with annotation search and highlighting features
  • Semantic search to find related literature across languages using embedding vectors

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

zotero-mcp · Install

Installation

  1. **Install the Plugin**: Download the latest zotero-mcp-plugin-x.x.x.xpi from the [Releases Page](https://github.com/cookjohn/zotero-mcp/releases) and install it in Zotero via Tools -> Add-ons. Restart Zotero.
  1. **Configure the Plugin**: In Zotero's Preferences -> Zotero MCP Plugin tab:

- Enable the server - Set the port (default is 23120) - Click 'Generate Client Configuration'

  1. **Configure AI Client**: Use the generated configuration in your AI client. For Claude Desktop:
{
  "mcpServers": {
    "zotero": {
      "transport": "streamable_http",
      "url": "http://127.0.0.1:23120/mcp"
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.