AWS Pricing MCP Server

1.0.27 · active · verified Thu Apr 16

The AWS Pricing MCP Server (Model Context Protocol) is an open-source tool developed by AWS Labs that enables AI assistants to access real-time AWS pricing data, providing cost estimates and insights through natural language queries. Currently at version 1.0.27, it receives frequent updates, often tied to the broader `awslabs/mcp` repository's release cadence, which can be daily or weekly with minor fixes and feature enhancements. [1, 2, 6, 8]

Common errors

Warnings

Install

Imports

Quickstart

To get started, configure your MCP-compatible client (such as Kiro, Cursor, or Amazon Q CLI) by adding the AWS Pricing MCP Server definition to its configuration file (e.g., `~/.kiro/settings/mcp.json`). Ensure you have `uv` installed and AWS credentials configured with appropriate permissions (`pricing:*`). Replace `your-aws-profile` with your AWS CLI profile name or ensure `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` environment variables are set. [8, 18, 21]

{
  "mcpServers": {
    "awslabs.aws-pricing-mcp-server": {
      "command": "uvx",
      "args": [
        "awslabs.aws-pricing-mcp-server@latest"
      ],
      "env": {
        "AWS_PROFILE": "your-aws-profile",
        "FASTMCP_LOG_LEVEL": "ERROR"
      }
    }
  }
}

view raw JSON →