mcp-server-chart vs agent-toolkit
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | agent-toolkit by sanity-io | |
|---|---|---|
| Stars | ★ 4,068 | ★ 137 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsDatabase |
| Language | TypeScript | JavaScript |
| 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.
agent-toolkit · Summary
MCP server providing direct access to Sanity projects with content management tools and development best practices.
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
agent-toolkit · Use cases
- Create and manage Sanity content through AI agents using MCP tools
- Deploy and update Sanity schemas programmatically
- Apply Sanity best practices automatically during development
- Generate and transform images within Sanity content
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"]
}
}
}agent-toolkit · Install
Quick Install
For most MCP-compatible clients:
npx sanity@latest mcp configureManual Install
Add to your MCP configuration (format varies by client):
{
"mcpServers": {
"Sanity": {
"type": "http",
"url": "https://mcp.sanity.io"
}
}
}Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"Sanity": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.sanity.io", "--transport", "http-only"]
}
}
}