MCP Catalogs
Home

aws-mcp-server vs mcp-server-chart

Side-by-side comparison to help you pick between these two MCP servers.

aws-mcp-server
by alexei-led
mcp-server-chart
by antvis
Stars★ 182★ 4,068
30d uses10,239
Score5084
Official
Categories
Ops & InfraDeveloper ToolsCloud Storage
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit3 mo agothis month

aws-mcp-server · Summary

AWS MCP server enables AI assistants to execute AWS CLI commands through MCP in safe containerized environment.

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

aws-mcp-server · Use cases

  • Automating AWS infrastructure management through AI assistants
  • Cloud debugging and troubleshooting using AI-powered CLI command generation
  • Infrastructure-as-code assistance with AWS services

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

aws-mcp-server · Install

Installation

Using uvx (Recommended)

Add to your MCP settings (Cmd+Shift+P → "Claude: Open MCP Config"):

{
  "mcpServers": {
    "aws": {
      "command": "uvx",
      "args": ["aws-mcp"]
    }
  }
}

Using Docker (More Secure)

Docker provides stronger isolation by running commands in a container:

{
  "mcpServers": {
    "aws": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-v",
        "~/.aws:/home/appuser/.aws:ro",
        "ghcr.io/alexei-led/aws-mcp-server:latest"
      ]
    }
  }
}

Using Streamable HTTP Transport

For web-based MCP clients:

docker run --rm -p 8000:8000 -e AWS_MCP_TRANSPORT=streamable-http -v ~/.aws:/home/appuser/.aws:ro ghcr.io/alexei-led/aws-mcp-server:latest

The server will be available at http://localhost:8000/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.