mcp-server-chart vs brain-in-the-fish
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | brain-in-the-fish by fabio-rovai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 66 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Rust |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
brain-in-the-fish · Summary
An MCP server that scores documents by verifying claims against source text through OWL knowledge graphs.
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
brain-in-the-fish · Use cases
- Evaluating tender responses for fabricated claims
- Academic essay grading with evidence verification
- Policy document review for evidence-backed proposals
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"]
}
}
}brain-in-the-fish · Install
git clone https://github.com/fabio-rovai/brain-in-the-fish.git
cd brain-in-the-fish
cargo build --release
# Run as MCP server
brain-in-the-fish serveFor Claude Desktop, add to config.json:
{
"mcpServers": {
"brain-in-the-fish": {
"command": "/path/to/brain-in-the-fish-mcp"
}
}
}