aws-cost-explorer-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
aws-cost-explorer-mcp-server by aarora79 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 127 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 41 | 77 |
| 官方 | — | ✓ |
| 分类 | 金融数据开发者工具可观测性 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
aws-cost-explorer-mcp-server · 概述
一个 MCP 服务器,通过 Claude Desktop 或 LangGraph 代理提供 AWS Cost Explorer 和 Bedrock 使用数据分析。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
aws-cost-explorer-mcp-server · 使用场景
- 通过 Claude Desktop 监控和分析 AWS 云支出模式
- 基于 EC2 和 Bedrock 使用数据创建财务报告
- 使用 LangGraph 构建带有 AWS 成本洞察的自定义聊天机器人
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
aws-cost-explorer-mcp-server · 安装
安装
- 安装
uv:
# macOS 和 Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"- 克隆并设置仓库:
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- 在
~/.aws/credentials中配置 AWS 凭证
Claude Desktop 配置
{
"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"
}
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything