mcp-server-chart vs arifos
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | arifos by ariffazil | |
|---|---|---|
| Stars | ★ 4,068 | ★ 43 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsSecurity |
| Language | TypeScript | Python |
| 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.
arifos · Summary
Constitutional AI governance kernel with 13 MCP tools for governed agentic execution.
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
arifos · Use cases
- Governed AI agent execution with constitutional safeguards
- Audit-trusted agentic workflows with immutable ledger
- Multi-agent systems requiring F1-F13 constitutional compliance
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"]
}
}
}arifos · Install
# Install from PyPI
pip install arifos
# Install from source (editable, with dev extras)
pip install -e ".[dev]"
# Run MCP server (HTTP + SSE)
python -m arifosmcp.server
# or via module:
python -m arifosmcp.runtime.__main__
# Run MCP server (stdio transport)
python -m arifosmcp.runtime.__main__ --mode stdioFor Claude Desktop, add to config.json:
{
"mcpServers": {
"arifos": {
"command": "python",
"args": ["-m", "arifosmcp.runtime.__main__", "--mode", "stdio"]
}
}
}