mcp-server-chart vs MCP-wolfram-alpha
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | MCP-wolfram-alpha by SecretiveShell | |
|---|---|---|
| Stars | ★ 4,068 | ★ 75 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 9 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
MCP-wolfram-alpha · Summary
MCP server connecting to Wolfram Alpha API for computational intelligence and queries.
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
MCP-wolfram-alpha · Use cases
- Perform mathematical calculations and equations through Wolfram Alpha
- Access computational knowledge and data analysis from Wolfram's knowledge engine
- Enhance chat assistants with scientific and computational capabilities
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"]
}
}
}MCP-wolfram-alpha · Install
Installation
- Install the required dependencies (Python and uv):
``bash pip install uv ``
- Clone the repository:
``bash git clone https://github.com/SecretiveShell/MCP-wolfram-alpha.git cd MCP-wolfram-alpha ``
- Set your Wolfram Alpha API key as an environment variable:
``bash export WOLFRAM_API_KEY="your-app-id" ``
- Configure Claude Desktop with the following JSON:
``json { "mcpServers": { "MCP-wolfram-alpha": { "command": "uv", "args": [ "--directory", "/path/to/MCP-wolfram-alpha", "run", "MCP-wolfram-alpha" ], "env": { "WOLFRAM_API_KEY": "your-app-id" } } } } ``