{
  "info": {
    "name": "Ambee — mcp.ai",
    "description": "REST API for the Ambee 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/ambee",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "ambee_geocode_by_place",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/by/place",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "by",
            "place"
          ]
        },
        "description": "Tool to transform a place name or address into geographic coordinates. Use after confirming the location name to get precise latitude and longitude.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"place\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_air_quality_by_city",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/air/quality/by/city",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "air",
            "quality",
            "by",
            "city"
          ]
        },
        "description": "Tool to retrieve real-time air quality data for a specific city. Use after obtaining a valid city name when current AQI and pollutant levels are needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_air_quality_by_country_code",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/air/quality/by/country/code",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "air",
            "quality",
            "by",
            "country",
            "code"
          ]
        },
        "description": "Tool to retrieve real-time air quality data for a specific country using a 3-letter ISO code. Use after acquiring the country code and when you want a national overview of air quality.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"countryCode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_air_quality_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/air/quality/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "air",
            "quality",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve real-time air quality data for a specific latitude and longitude. Use when you need hyper-local air quality readings for given coordinates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_air_quality_by_postal_code",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/air/quality/by/postal/code",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "air",
            "quality",
            "by",
            "postal",
            "code"
          ]
        },
        "description": "Retrieve real-time air quality data for a specific postal code and country. Returns comprehensive air quality metrics including pollutant concentrations (PM2.5, PM10, CO, NO2, O3, SO2), Air Quality In",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"postalCode\": \"\",\n  \"countryCode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_air_quality_forecast_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/air/quality/forecast/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "air",
            "quality",
            "forecast",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve air quality forecast for a specific latitude and longitude. Use when you need predicted air quality data up to 48 hours in advance based on geographic coordinates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_air_quality_history_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/air/quality/history/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "air",
            "quality",
            "history",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve historical air quality data for a specific latitude and longitude. Use when you need past air quality readings for given coordinates within the last 2 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": \"\",\n  \"lat\": 0,\n  \"lng\": 0,\n  \"from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_disasters_by_continent_latest",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/disasters/by/continent/latest",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "disasters",
            "by",
            "continent",
            "latest"
          ]
        },
        "description": "Tool to retrieve latest natural disaster data for a specific continent. Use when you need up-to-date disaster information by continent code.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"continent\": \"\",\n  \"eventType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_disasters_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/disasters/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "disasters",
            "history"
          ]
        },
        "description": "Tool to retrieve global historical natural disaster data with date range filtering. Use when you need to search disaster events from a specific starting date onwards.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"from\": \"\",\n  \"page\": 0,\n  \"limit\": 0,\n  \"eventType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_disasters_history_by_country_code",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/disasters/history/by/country/code",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "disasters",
            "history",
            "by",
            "country",
            "code"
          ]
        },
        "description": "Tool to retrieve historical natural disaster data for a country by ISO country code. Use when you need past disaster information for a specific country within a given date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": \"\",\n  \"from\": \"\",\n  \"page\": 0,\n  \"limit\": 0,\n  \"eventType\": \"\",\n  \"countryCode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_disasters_history_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/disasters/history/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "disasters",
            "history",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve historical natural disaster data for a specific location by coordinates with date range. Use when you need historical disaster information for a geographic point within the past month",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": \"\",\n  \"lat\": 0,\n  \"lng\": 0,\n  \"from\": \"\",\n  \"page\": 0,\n  \"limit\": 0,\n  \"eventType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_disasters_latest_by_country_code",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/disasters/latest/by/country/code",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "disasters",
            "latest",
            "by",
            "country",
            "code"
          ]
        },
        "description": "Tool to retrieve latest natural disaster data for a specific country using ISO country code. Use when you need up-to-date disaster information for a particular country.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"eventType\": \"\",\n  \"countryCode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_disasters_latest_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/disasters/latest/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "disasters",
            "latest",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve latest natural disaster data (earthquakes, floods, droughts, volcanic eruptions) for a specific location using geographic coordinates. Use when you need up-to-date disaster informatio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0,\n  \"page\": 0,\n  \"limit\": 0,\n  \"eventType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_elevation_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/elevation/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "elevation",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve elevation statistics (min, max, mean) for a specific latitude and longitude. Use when you need geospatial elevation data for a location within North America.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_elevation_by_place",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/elevation/by/place",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "elevation",
            "by",
            "place"
          ]
        },
        "description": "Retrieve elevation statistics (minimum, maximum, and mean) for a location by place name. Returns elevation data in meters above sea level. This endpoint has global coverage and is updated every 6 mont",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"place\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_fire_risk_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/fire/risk/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "fire",
            "risk",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve fire risk forecast and Fire Weather Index (FWI) data for specific geographic coordinates. Use when you need weekly fire risk predictions for a location over the next four weeks based ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_ili_forecast_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ili/forecast/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ili",
            "forecast",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve up to 28-day forecast of Influenza-like Illness (ILI) risk using latitude and longitude. Use when you need daily ILI risk levels for a specific location, optionally including pollen a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0,\n  \"details\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_pollen_forecast_by_place",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pollen/forecast/by/place",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pollen",
            "forecast",
            "by",
            "place"
          ]
        },
        "description": "Tool to retrieve 48-hour pollen forecast for a specific location by place name. Use when you need hourly pollen count predictions including grass, tree, and weed pollen levels with risk assessments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"place\": \"\",\n  \"speciesRisk\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_pollen_history_by_place",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pollen/history/by/place",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pollen",
            "history",
            "by",
            "place"
          ]
        },
        "description": "Tool to retrieve historical pollen data for a specific place name. Use after obtaining a valid place name and time range when historical pollen counts and risk levels are needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": \"\",\n  \"from\": \"\",\n  \"place\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_pollen_latest_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pollen/latest/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pollen",
            "latest",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve latest pollen data for a specific geographic location using latitude and longitude coordinates. Use when you need current pollen concentration levels and risk assessments for grass, t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_pollen_latest_by_place",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pollen/latest/by/place",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pollen",
            "latest",
            "by",
            "place"
          ]
        },
        "description": "Tool to retrieve latest pollen data for a specific place by name. Use when current pollen count and risk levels are needed for allergy awareness.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"place\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_weather_forecast_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/weather/forecast/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "weather",
            "forecast",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve weather forecast for a specific latitude and longitude (up to 72 hours). Use when you need predicted weather data based on geographic coordinates with customizable time intervals.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0,\n  \"filter\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_weather_latest_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/weather/latest/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "weather",
            "latest",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to retrieve current weather data for a specific latitude and longitude, including temperature, pressure, humidity, and wind conditions. Use when you need real-time weather information for given c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_wildfire_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/wildfire/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "wildfire",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Retrieves real-time wildfire data for a specific geographic location using latitude and longitude coordinates. Returns nearby wildfire incidents including both detected fires (from satellite imagery) ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0,\n  \"type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_wildfire_by_place",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/wildfire/by/place",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "wildfire",
            "by",
            "place"
          ]
        },
        "description": "Retrieves real-time wildfire data for a specific location by place name. Returns wildfire incidents from the last 7 days including both satellite-detected fires and officially reported fires. Each rec",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"place\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_get_wildfire_risk_forecast_by_place",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/wildfire/risk/forecast/by/place",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "wildfire",
            "risk",
            "forecast",
            "by",
            "place"
          ]
        },
        "description": "Tool to retrieve wildfire risk forecast for a specific place. Use when you need weekly wildfire risk predictions for a location over the next four weeks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"place\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ambee_reverse_geocode_by_lat_lng",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reverse/geocode/by/lat/lng",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reverse",
            "geocode",
            "by",
            "lat",
            "lng"
          ]
        },
        "description": "Tool to convert geographic coordinates into human-readable location data (address, place name, postal code). Use when you have latitude and longitude and need to get the corresponding address or locat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}