mcp-server-chart vs mcp-openapi-schema-explorer
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-openapi-schema-explorer by kadykov | |
|---|---|---|
| Stars | ★ 4,068 | ★ 71 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Toolsapi |
| Language | TypeScript | TypeScript |
| 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.
mcp-openapi-schema-explorer · Summary
An MCP server for token-efficient exploration of OpenAPI/Swagger specs via MCP Resource Templates.
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-openapi-schema-explorer · Use cases
- Exploring large API documentation without context window limitations
- Analyzing API endpoints and parameters programmatically
- Generating client code or documentation snippets based on API specs
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-openapi-schema-explorer · Install
Installation
For Claude Desktop, add the following to your config.json:
{
"mcpServers": {
"My API Spec (npx)": {
"command": "npx",
"args": [
"-y",
"mcp-openapi-schema-explorer@latest",
"<path-or-url-to-spec>",
"--output-format",
"yaml"
],
"env": {}
}
}
}Replace <path-or-url-to-spec> with your API specification file path or URL.