{
  "info": {
    "name": "AWS Billing — mcp.ai",
    "description": "REST API for the AWS Billing MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/aws_billing",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "aws_billing_anomalies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/anomalies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "anomalies"
          ]
        },
        "description": "Get normalized AWS Cost Anomaly Detection anomalies for a date range. The adapter drains NextPageToken internally.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"days_back\": 0,\n  \"start_date\": \"\",\n  \"end_date\": \"\",\n  \"limit\": 0,\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aws_billing_cost",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cost",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cost"
          ]
        },
        "description": "Get normalized AWS Cost Explorer cost and usage with daily breakdown and top services. The adapter drains NextPageToken internally.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"days_back\": 0,\n  \"start_date\": \"\",\n  \"end_date\": \"\",\n  \"granularity\": \"\",\n  \"group_by\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aws_billing_forecast",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/forecast",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "forecast"
          ]
        },
        "description": "Get normalized AWS Cost Explorer forecast for the next 30 days or an explicit date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start_date\": \"\",\n  \"end_date\": \"\",\n  \"granularity\": \"\",\n  \"metric\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aws_billing_list_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accounts"
          ]
        },
        "description": "List AWS Billing credential records linked to this install.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}