spotinfo vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
spotinfo by alexei-led | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 161 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 50 | 84 |
| Official | — | — |
| Categories | Ops & InfraDeveloper ToolsAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | 2 mo ago | this month |
spotinfo · Summary
MCP server for exploring AWS EC2 Spot instance inventory with real-time placement scores, pricing data, and interruption rates.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
spotinfo · Use cases
- DevOps engineers optimizing cloud infrastructure costs by identifying cost-effective Spot instances
- Cloud architects comparing availability and pricing of instance types across regions
- AI assistants helping users find best Spot instance matches for their workload requirements
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
spotinfo · Install
Installation
# macOS with Homebrew
brew tap alexei-led/tap
brew install alexei-led/tap/spotinfo
# Linux/Windows: Download from releases
curl -L https://github.com/alexei-led/spotinfo/releases/latest/download/spotinfo_linux_amd64.tar.gz | tar xz
# Docker
docker pull ghcr.io/alexei-led/spotinfo:latestClaude Desktop Setup
Add to Claude Desktop config.json:
{
"mcpServers": {
"spotinfo": {
"command": "spotinfo",
"args": ["--mcp"]
}
}
}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"]
}
}
}