mcp-server-chart vs todo-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | todo-mcp-server by idsulik | |
|---|---|---|
| Stars | ★ 4,068 | ★ 7 |
| 30d uses | 10,239 | — |
| Score | 84 | 32 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsOther |
| Language | TypeScript | Python |
| Last commit | this month | 13 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
todo-mcp-server · Summary
A minimal Todo MCP server providing basic task management operations through Model Context Protocol.
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
todo-mcp-server · Use cases
- Personal task management within AI assistants
- Demonstration of MCP server implementation patterns
- Integration with AI workflows for todo tracking
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"]
}
}
}todo-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/idsulik/todo-mcp-server.git
cd todo-mcp-server- Install dependencies using uv:
uv pip install -e .Adding to Claude Desktop
Add this to your Claude Desktop configuration file:
{
"mcpServers": {
"todo": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"/path/to/your/server.py"
]
}
}
}Using Docker
Alternatively, you can use Docker:
{
"mcpServers": {
"todo": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"idsulik/todo-mcp-server"
]
}
}
}