aws-pricing-mcp
AWS EC2 定价 MCP 服务器
AWS EC2 定价 MCP 服务器允许任何 LLM 或自动化脚本通过一次调用查询实时 EC2 定价。它由预先解析的 AWS 定价目录提供支持,可以回答以下问题:
What is the cheapest EC2 instance with 32GB RAM?
Which AMD instances have more than 3.5 Ghz CPUs?
What is the 3-yr All Upfront discount on r6g family in eu-west-1?
What is the cheapest instance to run Windows with SQL Server Enterprise?
使用 Docker
使用 Docker hub 镜像
将此 mcp_config.json 用于 Docker hub 镜像:
{
"mcpServers": {
"AWS EC2 Pricing MCP": {
"command": "docker",
"args": ["run", "--rm", "-i", "-q", "--network", "none", "ai1st/aws-pricing-mcp"]
}
}
}--rm标志在容器退出时删除该容器。-i标志启用 stdio 通信的交互模式。-q标志抑制有关下载图像的 docker 消息。--network none完全断开容器与网络的连接,以保证不会泄露数据。
使用本地图像
构建图像:
docker build -t aws-pricing-mcp . --build-arg BUILD_DATE=$(date +%Y-%m-%d)这将下载价格数据并构建镜像。BUILD_DATE 参数确保在构建期间下载最新的价格数据。
本地构建图像的示例 mcp_config.json:
{
"mcpServers": { "AWS EC2 Pricing MCP": {
"command": "docker",
"args": ["run", "--rm", "-i", "--network", "none", "aws-pricing-mcp"]
}
}
}--rm标志在容器退出时删除该容器。-i标志启用 stdio 通信的交互模式。--network none完全断开容器与网络的连接,以保证不会泄露数据。
Related MCP server: AWS Pricing Calculator MCP Server
直接使用 Python
您需要先下载定价数据:
curl https://cloudfix-public-aws-pricing.s3.us-east-1.amazonaws.com/pricing/ec2_pricing.json.gz | gunzip > ec2_pricing.json它应该与 server.py 位于同一目录中。
本地 Python 的示例 mcp_config.json:
{
"mcpServers": { "AWS EC2 Pricing MCP": {
"command": "python",
"args": [
"/path/to/server.py"
]
}
}
}搭建说明
有关构建和发布 Docker 镜像的说明,请参阅BUILD.md 。
定价数据 JSON 格式
请参阅PRICING.md 。
This server cannot be installed
Maintenance
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server that lets Claude (or any MCP-compatible client) compare on-demand compute + storage pricing across AWS, Azure, and GCP in real time.141MIT
- AlicenseNot gradedqualityCmaintenanceMCP server that provides tools for automating AWS Pricing Calculator estimate generation.MIT
- AlicenseAqualityDmaintenanceMulti-cloud pricing comparison MCP server that enables natural language queries to compare compute, storage, egress, and Kubernetes costs across AWS, Azure, GCP, and OCI.31765Apache 2.0
- AlicenseNot gradedqualityDmaintenanceLive LLM pricing as an MCP server. Ask Claude or any MCP client 'how much does this prompt cost?' and get real numbers from a hand-checked pricing table for every major LLM.MIT
Related MCP Connectors
Cloud-hosted MCP server for durable AI memory
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
MCP server for accessing curated awesome list documentation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/trilogy-group/aws-pricing-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server