mcp-server-chart vs deepseek-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | deepseek-mcp-server by DMontgomery40 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 334 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
deepseek-mcp-server · Summary
A comprehensive MCP server exposing DeepSeek V4 API tools for chat completions, model listing, and balance checking.
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
deepseek-mcp-server · Use cases
- Integrating DeepSeek models into AI assistants and workflows through MCP
- Building applications with function calling and reasoning capabilities
- Managing and monitoring DeepSeek API usage and account balance
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"]
}
}
}deepseek-mcp-server · Install
Installation
Local Stdio
DEEPSEEK_API_KEY="your-api-key" npx -y deepseek-mcp-serverDocker
docker pull docker.io/dmontgomery40/deepseek-mcp-server:0.5.0
docker run --rm -i -e DEEPSEEK_API_KEY="your-api-key" docker.io/dmontgomery40/deepseek-mcp-server:0.5.0Claude Desktop
Add to your Claude Desktop config:
{
"mcpServers": {
"deepseek": {
"command": "npx",
"args": ["-y", "deepseek-mcp-server"],
"env": {
"DEEPSEEK_API_KEY": "your-api-key"
}
}
}
}Remote Hosted
codex mcp add deepseek --url https://deepseek-mcp.ragweld.com/mcp --bearer-token-env-var DEEPSEEK_MCP_AUTH_TOKEN