Loading...

Provides up-to-date AWS EC2 instance pricing data, including On-Demand, Reserved Instances, and CloudFix RightSpend models, accessible via server or serverless Lambda.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
Provides up-to-date AWS EC2 instance pricing data, including On-Demand, Reserved Instances, and CloudFix RightSpend models, accessible via server or serverless Lambda.
This MCP server is generally safe due to its read-only nature and focus on providing pricing data. The primary risk lies in potential data integrity issues if the source S3 bucket is compromised, but this is mitigated by AWS's security measures. It's safe to use for informational purposes but should not be relied upon for critical financial decisions without independent verification.
Performance is primarily limited by network latency and the speed of the S3 data source. Caching can significantly improve response times.
Cost is primarily related to the number of API calls. The Lambda function offers a cost-effective serverless option. Consider implementing client-side caching to minimize costs.
{
"mcpServers": {
"AWS EC2 Pricing MCP": {
"command": "docker",
"args": ["run", "--rm", "-i", "-q", "--network", "none", "ai1st/aws-pricing-mcp"]
}
}
}BUILD_DATEget_ec2_pricingRetrieves the current pricing for EC2 instances based on specified criteria.
Read-only operation; no modification of data or system state.
None
This MCP server is generally safe due to its read-only nature and focus on providing pricing data. The primary risk lies in potential data integrity issues if the source S3 bucket is compromised, but this is mitigated by AWS's security measures. It's safe to use for informational purposes but should not be relied upon for critical financial decisions without independent verification.
This MCP server provides read-only access to pricing data, so autonomy is limited to selecting and filtering data. No destructive actions are possible.
Production Tip
Implement caching on the client-side to reduce the number of API calls and improve performance.
The pricing data is dynamically updated from an S3 bucket, but the exact frequency is not specified. Assume it's updated regularly, but not in real-time.
On Demand, Reserved Instances, and CloudFix RightSpend.
Yes, the server supports flexible filtering, including by region.
No, authentication is not required.
The server will return an error, as it relies on the S3 bucket for pricing data.
Use the provided SAM template to build and deploy the Lambda function.
The documentation doesn't specify rate limits, but it's good practice to implement client-side caching to avoid excessive API calls.