aws-cost-explorer-mcp-server vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
aws-cost-explorer-mcp-server by aarora79 | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 127 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 41 | 84 |
| Official | — | — |
| Categories | FinanceDeveloper ToolsMonitoring | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 13 mo ago | this month |
aws-cost-explorer-mcp-server · Summary
An MCP server that provides AWS Cost Explorer and Bedrock usage data analysis through Claude Desktop or LangGraph agents.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
aws-cost-explorer-mcp-server · Use cases
- Monitor and analyze AWS cloud spending patterns through Claude Desktop
- Create financial reports based on EC2 and Bedrock usage data
- Build custom chatbots using LangGraph with AWS cost insights
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-cost-explorer-mcp-server · Install
Installation
- Install
uv:
# On macOS and Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"- Clone and setup the repository:
git clone https://github.com/aarora79/aws-cost-explorer-mcp.git
cd aws-cost-explorer-mcp
uv venv --python 3.12 && source .venv/bin/activate && uv pip install --requirement pyproject.toml- Configure AWS credentials in
~/.aws/credentials
Claude Desktop Configuration
{
"mcpServers": {
"aws-cost-explorer": {
"command": "uv",
"args": [
"--directory",
"/path/to/aws-cost-explorer-mcp",
"run",
"server.py"
],
"env": {
"AWS_ACCESS_KEY_ID": "YOUR_ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY": "YOUR_SECRET_ACCESS_KEY",
"AWS_REGION": "us-east-1",
"BEDROCK_LOG_GROUP_NAME": "YOUR_CLOUDWATCH_BEDROCK_LOG_GROUP_NAME",
"MCP_TRANSPORT": "stdio"
}
}
}
}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"]
}
}
}