MCP Catalogs
Home

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 uses10,239
Score5084
Official
Categories
Ops & InfraDeveloper ToolsAI / LLM Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguageGoTypeScript
Last commit2 mo agothis 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:latest

Claude 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-chart

For 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.