mcp-server-chart vs openfoam-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | openfoam-mcp-server by webworn | |
|---|---|---|
| Stars | ★ 4,068 | ★ 97 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | C++ |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
openfoam-mcp-server · Summary
Intelligent CFD education system using Socratic questioning and OpenFOAM integration with AI-driven problem solving.
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
openfoam-mcp-server · Use cases
- Educational tool for students learning computational fluid dynamics concepts progressively
- Professional CFD analysis assistant with intelligent parameter extraction and error resolution
- Research tool for RDE analysis with specialized 2D/3D wave detection 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"]
}
}
}openfoam-mcp-server · Install
Installation
Prerequisites
- OpenFOAM v12 installed
- C++20 compatible compiler
- Python 3.8+ for MCP components
Build Instructions
git clone https://github.com/webworn/openfoam-mcp-server.git
cd openfoam-mcp-server
mkdir build && cd build
cmake ..
makeClaude Desktop Integration
Add to Claude Desktop config:
{
"mcpServers": {
"openfoam": {
"command": "path/to/openfoam-mcp-server/build/openfoam-mcp",
"args": []
}
}
}