mcp-server-chart vs fabric-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | fabric-mcp by ksylvan | |
|---|---|---|
| Stars | ★ 4,068 | ★ 86 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| 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.
fabric-mcp · Summary
Fabric MCP Server integrates Daniel Miessler's Fabric AI framework into MCP-enabled tools through a standalone server.
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
fabric-mcp · Use cases
- Using Fabric's specialized prompts for code explanation and refactoring directly within IDEs
- Accessing Fabric's pattern library through MCP-enabled chat interfaces
- Leveraging Fabric's AI capabilities in custom MCP-based applications
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"]
}
}
}fabric-mcp · Install
Installation
From PyPI (for users)
pip install fabric-mcpFrom Source (for developers)
git clone https://github.com/ksylvan/fabric-mcp.git
cd fabric-mcp
uv sync --dev
source .venv/bin/activateConfiguration
Set environment variables:
FABRIC_BASE_URL: Base URL of Fabric REST API (default: http://127.0.0.1:8080)FABRIC_API_KEY: API key for authentication (if required)
Running the Server
# Standard I/O transport (default)
fabric-mcp --stdio
# HTTP transport
fabric-mcp --http-streamable --host 0.0.0.0 --port 3000Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"fabric": {
"command": "fabric-mcp",
"args": ["--stdio"]
}
}
}