mcp-server-chart vs paperless-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | paperless-mcp by nloui | |
|---|---|---|
| Stars | ★ 4,068 | ★ 173 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityKnowledge GraphFile System |
| Language | TypeScript | TypeScript |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
paperless-mcp · Summary
An MCP server that provides comprehensive document management capabilities for Paperless-NGX document management system.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
paperless-mcp · Use cases
- Automate document organization and tagging through AI-powered commands
- Search and retrieve specific documents using natural language queries
- Batch process documents for tagging, categorizing, or reorganizing
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}paperless-mcp · Install
Installation
- Install the MCP server globally:
npm install -g paperless-mcp- Add to Claude's MCP configuration:
For Claude Desktop:
{
"mcpServers": {
"paperless": {
"command": "npx",
"args": ["paperless-mcp", "http://your-paperless-instance:8000", "your-api-token"]
}
}
}For VSCode Claude extension:
{
"mcpServers": {
"paperless": {
"command": "npx",
"args": ["paperless-mcp", "http://your-paperless-instance:8000", "your-api-token"]
}
}
}- Get your API token from your Paperless-NGX profile page and replace the placeholders in the configuration.