mcp-server-chart vs joplin-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | joplin-mcp-server by dweigend | |
|---|---|---|
| Stars | ★ 4,068 | ★ 73 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityKnowledge GraphAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 15 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
joplin-mcp-server · Summary
MCP server for Joplin notes with CRUD operations and search functionality.
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
joplin-mcp-server · Use cases
- AI assistants access and modify Joplin notes through MCP protocol
- Automated note organization based on content analysis
- Cross-platform note management via AI tools
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"]
}
}
}joplin-mcp-server · Install
Installation
Prerequisites
- Python 3.10 or higher
- Joplin Desktop with Web Clipper Service enabled
- uv (Python package manager)
Setup
# Clone repository
git clone https://github.com/dweigend/joplin-mcp.git
cd joplin-mcp
# Create and activate virtual environment
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies
uv pip install -e .
# Configure Joplin API Token
# Create .env file with JOPLIN_TOKEN=your_api_token_hereClaude Desktop Configuration
Add this to Claude Desktop configuration:
{
"mcpServers": {
"joplin": {
"command": "/PATH/TO/UV/uv",
"args": [
"--directory",
"/PATH/TO/YOUR/PROJECT/joplin_mcp",
"run",
"src/mcp/joplin_mcp.py"
]
}
}
}