AWS Pricing MCP Server
Provides real-time AWS pricing data and cost analysis, including service discovery, pricing queries, multi-region comparisons, and cost optimization recommendations.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AWS Pricing MCP ServerHow much does a gp3 EBS volume cost per GB in us-west-2?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AWS Pricing MCP Server (Fork)
An MCP server for accessing real-time AWS pricing information and providing cost analysis capabilities. Forked from awslabs/mcp.
Important Note: This server provides real-time pricing data from the public AWS Price List Bulk API. We cannot guarantee that AI assistants will always construct filters correctly or identify the absolute cheapest options. All API calls are free of charge and require no AWS credentials.
Changes from Upstream
This fork replaces the AWS Pricing Query API (boto3) with the public AWS Price List Bulk API, which means:
No AWS credentials required — no IAM permissions, no
aws configure, noAWS_PROFILEneededNo
boto3dependency — useshttpxfor direct HTTP requests to the public Bulk APILocal filtering — filters are applied locally after fetching price lists, supporting
EQUALS,ANY_OF,CONTAINS, andNONE_OFfilter typesIndex-based pagination — uses simple integer offsets instead of AWS API pagination tokens
Related MCP server: Cost Management MCP
Features
AWS Pricing Discovery & Information
Service catalog exploration: Discover all AWS services with available pricing information
Pricing attribute discovery: Identify filterable dimensions (instance types, regions, storage classes, etc.) for any AWS service
Real-time pricing queries: Access current pricing data with advanced filtering capabilities including multi-option comparisons and pattern matching
Multi-region pricing comparisons: Compare pricing across different AWS regions in a single query
Bulk pricing data access: Download complete pricing datasets in CSV/JSON formats for historical analysis and offline processing
Cost Analysis & Planning
Detailed cost report generation: Create comprehensive cost analysis reports with unit pricing, calculation breakdowns, and usage scenarios
Infrastructure project analysis: Scan CDK and Terraform projects to automatically identify AWS services and their configurations
Architecture pattern guidance: Get detailed architecture patterns and cost considerations, especially for Amazon Bedrock services
Cost optimization recommendations: Receive AWS Well-Architected Framework aligned suggestions for cost optimization
Query pricing data with natural language
Ask questions about AWS pricing in plain English, no complex query languages required
Get instant answers from the AWS Price List Bulk API for any AWS service
Retrieve comprehensive pricing information with flexible filtering options
Prerequisites
Install
uvfrom Astral or the GitHub READMEInstall Python using
uv python install 3.10
No AWS credentials or IAM permissions are needed — this fork uses the public Bulk API.
Installation
From GitHub (recommended)
Configure the MCP server in your MCP client configuration:
For Linux/MacOS:
{
"mcpServers": {
"aws-pricing": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/sebdroid/aws-pricing-mcp-server",
"awslabs.aws-pricing-mcp-server"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
}
}
}
}For Windows:
{
"mcpServers": {
"aws-pricing": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/sebdroid/aws-pricing-mcp-server",
"awslabs.aws-pricing-mcp-server.exe"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
}
}
}
}From a local clone
git clone https://github.com/sebdroid/aws-pricing-mcp-server.git
cd aws-pricing-mcp-server
uv syncThen configure your MCP client to use the local directory:
{
"mcpServers": {
"aws-pricing": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/aws-pricing-mcp-server",
"awslabs.aws-pricing-mcp-server"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
}
}
}
}Using Docker
After a successful docker build -t awslabs/aws-pricing-mcp-server .:
{
"mcpServers": {
"aws-pricing": {
"command": "docker",
"args": [
"run",
"--rm",
"--interactive",
"--env",
"FASTMCP_LOG_LEVEL=ERROR",
"awslabs/aws-pricing-mcp-server:latest"
]
}
}
}Configuration
Variable | Default | Description |
|
| Log level ( |
|
| Fallback region for |
No AWS credentials are needed — all data comes from the public Bulk API.
"env": {
"FASTMCP_LOG_LEVEL": "ERROR",
"AWS_REGION": "us-east-1"
}This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/sebdroid/aws-pricing-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server