hamr vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
hamr by AKhilRaghav0 | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 18 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 43 | 84 |
| Official | — | — |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | 1 mo ago | this month |
hamr · Summary
A Go framework for building MCP servers with automatic schema generation from struct tags, optimizing for token cost.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
hamr · Use cases
- Building token-efficient MCP servers for AI assistants with minimal overhead
- Creating Go-based MCP servers without writing JSON schemas manually
- Developing monitoring dashboards for MCP servers with real-time tool call tracking
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
hamr · Install
Installation
Install the CLI:
go install github.com/AKhilRaghav0/hamr/cmd/hamr@latestScaffold a new project:
hamr init my-server
cd my-server
go run .Add to existing Go project:
go get github.com/AKhilRaghav0/hamrClaude Desktop Configuration
{
"mcpServers": {
"my-server": {
"command": "go",
"args": ["run", "/path/to/my-server"]
}
}
}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"]
}
}
}