jodi_gas_compare
Pack: jodi · Endpoint: https://gateway.pipeworx.io/jodi/mcp
Compare JODI-Gas countries on one series, at the latest reported month AND against N months earlier — ranked by change. Answers “which Gulf gas producers grew LNG exports most this year”, “Qatar gas production vs last year”. Defaults to the Gulf/Persian-Gulf producers if no countries are given. A country missing a compared month is marked reported:false and excluded from the ranking rather than treated as a zero. Example: jodi_gas_compare({flow:“exports_lng”, months_back:12}). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
countries | array | no | ISO2 codes or names; defaults to the Gulf producer set |
items | string | no | |
flow | string | no | production (default), imports, imports_lng, exports, exports_lng, closing_stocks, demand, etc — see jodi_gas_series |
months_back | number | no | How many months before the latest to compare against (default 12 = year-over-year; use 3 for quarter-over-quarter) |
end_month | string | no | Latest month to compare from, as YYYY-MM; defaults to the newest month anyone in the list has reported |
Example call
Arguments
{
"flow": "exports_lng",
"months_back": 12
}
curl
curl -X POST https://gateway.pipeworx.io/jodi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"jodi_gas_compare","arguments":{"flow":"exports_lng","months_back":12}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('jodi_gas_compare', {
"flow": "exports_lng",
"months_back": 12
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"jodi": {
"url": "https://gateway.pipeworx.io/jodi/mcp"
}
}
}
See Getting Started for client-specific install steps.