mcp-server-chart vs mcp-nixos
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-nixos by utensils | |
|---|---|---|
| Stars | ★ 4,068 | ★ 639 |
| 30d uses | 10,239 | — |
| Score | 84 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| 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.
mcp-nixos · Summary
MCP-NixOS provides real-time NixOS package, option, and documentation data to prevent AI hallucinations.
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
mcp-nixos · Use cases
- AI assistants providing accurate NixOS package and configuration information
- NixOS system administrators querying package options and documentation
- Developers working with Nix who need instant access to package metadata and version history
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"]
}
}
}mcp-nixos · Install
Installation
**You DON'T need Nix installed.** This runs anywhere Python runs.
# Run directly (no install)
uvx mcp-nixos
# Or install
pip install mcp-nixosFor Nix users:
nix run github:utensils/mcp-nixos
nix profile install github:utensils/mcp-nixosClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"nixos": {
"command": "uvx",
"args": ["mcp-nixos"]
}
}
}