zotero-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
zotero-mcp by cookjohn | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 784 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityKnowledge Graph | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
zotero-mcp · Install
Installation
- **Install the Plugin**: Download the latest
zotero-mcp-plugin-x.x.x.xpifrom the [Releases Page](https://github.com/cookjohn/zotero-mcp/releases) and install it in Zotero viaTools -> Add-ons. Restart Zotero.
- **Configure the Plugin**: In Zotero's
Preferences -> Zotero MCP Plugintab:
- Enable the server - Set the port (default is 23120) - Click 'Generate Client Configuration'
- **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"
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.