mcp-server-chart vs oatpp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | oatpp-mcp by oatpp | |
|---|---|---|
| Stars | ★ 4,068 | ★ 49 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | C++ |
| Last commit | this month | 17 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
oatpp-mcp · Summary
C++ MCP server implementation for Oat++ framework with automated API tool generation.
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
oatpp-mcp · Use cases
- Enabling LLMs to query and interact with existing Oat++ REST APIs
- Building C++ applications that can leverage LLM capabilities through MCP integration
- Creating MCP servers for code review or logging systems using Oat++ framework
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"]
}
}
}oatpp-mcp · Install
Install oatpp-mcp
Prerequisites
- Install the main [oatpp](https://github.com/oatpp/oatpp) module
Build Steps
- Clone this repository
- In the repository root, run:
``bash mkdir build && cd build cmake .. make install ``
Claude Desktop Configuration
To use with Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"oatpp-mcp": {
"command": "path/to/your/oatpp-mcp-executable",
"args": []
}
}
}