mcp-server-chart vs hermes-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | hermes-mcp by cloudwalk | |
|---|---|---|
| Stars | ★ 4,068 | ★ 368 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsCommunication |
| Language | TypeScript | Elixir |
| 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.
hermes-mcp · Summary
A high-performance Elixir SDK providing complete MCP client and server implementations with Elixir's concurrency and fault tolerance.
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
hermes-mcp · Use cases
- Building MCP servers for Elixir/Phoenix applications
- Creating MCP clients to connect to external services
- Implementing high-performance AI tool integrations with Elixir
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"]
}
}
}hermes-mcp · Install
Installation
Add hermes_mcp to your dependencies in mix.exs:
def deps do
[
{:hermes_mcp, "~> 0.14.1"}
]
endFor Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"hermes-elixir": {
"command": "elixir",
"args": ["--no-halt", "path/to/your/server.exs"]
}
}
}