recent_disruptions

Pack: imf-portwatch · Endpoint: https://gateway.pipeworx.io/imf-portwatch/mcp

Port-affecting disruption events tracked by PortWatch — tropical cyclones, floods, earthquakes, conflict events — with start/end dates, alert level (GREEN/ORANGE/RED), severity, affected port count, and impacted population. Filter by country, alert level, or year. Use for “what disrupted shipping in the last month”, “which port closures hit our supply chain”, or to validate a bet on whether a current disruption is escalating.

Parameters

NameTypeRequiredDescription
countrystringnoFilter to a single country name (e.g. “Mozambique”)
alert_levelstringnoRED | ORANGE | GREEN — minimum alert level to include
yearnumbernoFilter to events from this calendar year
limitnumbernoMax events to return (default 25, max 100)

Example call

Arguments

{
  "country": "Mozambique"
}

curl

curl -X POST https://gateway.pipeworx.io/imf-portwatch/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"recent_disruptions","arguments":{"country":"Mozambique"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('recent_disruptions', {
  "country": "Mozambique"
});

More examples

{
  "alert_level": "RED",
  "year": 2024,
  "limit": 10
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "imf-portwatch": {
      "url": "https://gateway.pipeworx.io/imf-portwatch/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 28, 2026