mcp-server-chart vs matlab-mcp-core-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | matlab-mcp-core-server by matlab | |
|---|---|---|
| Stars | ★ 4,068 | ★ 636 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Go |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
matlab-mcp-core-server · Summary
Official MATLAB MCP Server enabling AI applications to execute MATLAB code and access MATLAB 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
matlab-mcp-core-server · Use cases
- AI coding assistants generating and debugging MATLAB code
- Automated analysis of MATLAB scripts for code quality
- Integration of MATLAB capabilities into AI development workflows
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"]
}
}
}matlab-mcp-core-server · Install
Installation Steps
- Install MATLAB 2021a or later and add it to the system PATH
- Download the latest release for your platform or build from source:
``bash go install github.com/matlab/matlab-mcp-core-server/cmd/matlab-mcp-core-server@latest ``
- For Claude Desktop, install the Filesystem extension then download and install the
matlab-mcp-core-server.mcpbbundle
- For Claude Code, run:
``bash claude mcp add --transport stdio matlab -- /path/to/matlab-mcp-core-server ``
- For GitHub Copilot in VS Code, create
.vscode/mcp.jsonwith:
``json { "servers": { "matlab": { "type": "stdio", "command": "/path/to/matlab-mcp-core-server", "args": [] } } } ``