mcp-server-chart vs hass-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | hass-mcp-server by ganhammar | |
|---|---|---|
| Stars | ★ 4,068 | ★ 34 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM Toolshome-automationiot |
| Language | TypeScript | Python |
| 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.
hass-mcp-server · Summary
Home Assistant MCP server with HTTP transport for remote access via OAuth or long-lived tokens.
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
hass-mcp-server · Use cases
- Remote control of Home Assistant devices and automations through Claude web interface
- Automated configuration management of YAML files with automatic backups and validation
- System monitoring and troubleshooting using AI-powered prompts and completions
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"]
}
}
}hass-mcp-server · Install
Installation
HACS (Recommended)
- Open HACS in Home Assistant
- Search for "MCP Server"
- Click "Download"
- Restart Home Assistant
- Configure the integration
Claude Desktop Integration
{
"mcpServers": {
"home-assistant": {
"command": "npx",
"args": ["@modelcontextprotocol/server-homeassistant"],
"env": {
"HOME_ASSISTANT_URL": "https://your-home-assistant.com",
"HOME_ASSISTANT_TOKEN": "your-long-lived-token"
}
}
}
}