mcp-server-chart vs deterministic-agent-control-protocol
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | deterministic-agent-control-protocol by elliot35 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 86 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsSecurityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
deterministic-agent-control-protocol · Summary
A governance gateway for AI agents providing bounded, auditable control via MCP proxy, shell proxy, and HTTP API.
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
deterministic-agent-control-protocol · Use cases
- Securing AI agents by preventing access to sensitive files and secrets
- Providing audit trails for all agent actions in enterprise environments
- Enforcing organizational policies on development and deployment workflows
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"]
}
}
}deterministic-agent-control-protocol · Install
Installation
npm install @det-acp/coreQuick Start
Initialize governance for your AI agent:
npx det-acp init cursor # For Cursor
npx det-acp init codex # For Codex CLI
npx det-acp init claude-code # For Claude CodeConfigure Claude Desktop (if applicable):
{
"mcpServers": {
"det-acp": {
"command": "npx",
"args": ["-y", "@det-acp/core"]
}
}
}