AWS Pricing MCP Server
An MCP server for accessing real-time AWS pricing information and providing cost analysis capabilities, with no AWS credentials required.
README
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_PROFILEneeded - No
boto3dependency — useshttpxfor direct HTTP requests to the public Bulk API - Local filtering — filters are applied locally after fetching price lists, supporting
EQUALS,ANY_OF,CONTAINS, andNONE_OFfilter types - Index-based pagination — uses simple integer offsets instead of AWS API pagination tokens
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 README - Install 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 sync
Then 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 |
|---|---|---|
FASTMCP_LOG_LEVEL |
WARNING |
Log level (ERROR, WARNING, INFO, DEBUG) |
AWS_REGION |
us-east-1 |
Fallback region for get_pricing_service_attributes and get_pricing_attribute_values when no region parameter is provided. All three discovery tools accept an explicit region parameter that overrides this. |
No AWS credentials are needed — all data comes from the public Bulk API.
"env": {
"FASTMCP_LOG_LEVEL": "ERROR",
"AWS_REGION": "us-east-1"
}
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.