mcp-server-chart vs gram
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | gram by speakeasy-api | |
|---|---|---|
| Stars | ★ 4,068 | ★ 233 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| 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.
gram · Summary
Gram is a platform for creating, curating, and hosting MCP servers with TypeScript SDK and OpenAPI support.
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
gram · Use cases
- Host one or more remote MCP servers at a custom domain like mcp.{your-company}.com
- Power in-application chat by exposing context from internal APIs through tools
- Manage and secure MCP servers for an entire organization through a unified control plane
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"]
}
}
}gram · Install
Install the Gram CLI:
curl -fsSL https://go.getgram.ai/cli.sh | bashCreate a new Gram function:
npm create @gram-ai/function@latest
cd my_function
npm run build
npm run pushTo use in Claude Desktop, add to config.json:
{
"mcpServers": {
"gram": {
"command": "npx",
"args": ["@gram-ai/function"]
}
}
}