agience-core vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
agience-core by Agience | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 39 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 45 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
agience-core · Summary
Agience is an MCP-native platform that structures AI outputs into durable, versioned artifacts with provenance tracking.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
agience-core · Use cases
- Collaborative knowledge management where AI and humans work with the same information substrate
- Audit trail tracking for AI-generated decisions and content in regulated industries
- Composable AI agent workflows with structured inputs and outputs via MCP
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
agience-core · Install
Installation Options
**Run at Home (Stable Build)**
# Linux/macOS
curl -fsSL https://get.agience.ai/home/install.sh | sh
# Windows (PowerShell)
irm https://get.agience.ai/home/install.ps1 | iex**Developer Setup (Build from Source)**
git clone https://github.com/Agience/agience-core.git
cd agience-core
# Linux/macOS
./agience dev -f --build
# Windows
agience dev -f --build**MCP Client Configuration** For Claude Desktop, add to claude_desktop_config.json:
"mcpServers": {
"agience": {
"command": "python",
"args": ["-m", "agience.mcp"]
}
}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"]
}
}
}