{
  "info": {
    "name": "Stormglass Io — mcp.ai",
    "description": "REST API for the Stormglass Io 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/stormglass_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "stormglass_io_get_elevation_point",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/elevation/point",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "elevation",
            "point"
          ]
        },
        "description": "Tool to fetch elevation data for a single geographic point. Use when you need bathymetry or topography for a specific latitude/longitude.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "stormglass_io_get_tide_extremes_point",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tide/extremes/point",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tide",
            "extremes",
            "point"
          ]
        },
        "description": "Tool to retrieve high and low tide times with corresponding sea level heights for a coordinate. Returns tide extreme points (high/low) for the specified time interval.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"lat\": 0,\n  \"lng\": 0,\n  \"datum\": \"\",\n  \"start\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "stormglass_io_get_tide_stations_area",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tide/stations/area",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tide",
            "stations",
            "area"
          ]
        },
        "description": "Tool to list tide stations within a defined geographic bounding box. Use when you need stations in a specific region defined by coordinates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"box\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "stormglass_io_get_tide_stations_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tide/stations/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tide",
            "stations",
            "list"
          ]
        },
        "description": "Tool to list all available tide stations. Use when you need a catalog of stations before querying tide data.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "stormglass_io_stormglass_get_solar_point",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stormglass/get/solar/point",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stormglass",
            "get",
            "solar",
            "point"
          ]
        },
        "description": "Tool to fetch solar irradiation and sun-position data for a specific coordinate. Use after confirming lat/lng, desired parameters, and optional ISO-formatted start/end.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"lat\": 0,\n  \"lng\": 0,\n  \"start\": \"\",\n  \"params\": \"\",\n  \"source\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "stormglass_io_stormglass_get_weather_point",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/stormglass/get/weather/point",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "stormglass",
            "get",
            "weather",
            "point"
          ]
        },
        "description": "Tool to fetch marine and land weather data for a specific coordinate. Use after confirming latitude, longitude, and desired parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"lat\": 0,\n  \"lng\": 0,\n  \"start\": \"\",\n  \"params\": \"\",\n  \"source\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}