Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server for accessing real-time AWS pricing information and providing cost analysis capabilities, with no AWS credentials required.

README.md

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, no AWS_PROFILE needed
  • No boto3 dependency — uses httpx for direct HTTP requests to the public Bulk API
  • Local filtering — filters are applied locally after fetching price lists, supporting EQUALS, ANY_OF, CONTAINS, and NONE_OF filter 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

  1. Install uv from Astral or the GitHub README
  2. 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"
}

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Cloud & DevOps servers.