gastat_search

Pack: gastat · Endpoint: https://gateway.pipeworx.io/gastat/mcp

Search GASTAT’s Saudi Arabia statistics catalog (~2,600 indicators: population, employment/unemployment, GDP, consumer prices/inflation, foreign trade, and more) by keyword in English or Arabic. Returns indicator ids + bilingual titles + reporting frequency; pass an id to gastat_series for the full time series. PREFER OVER WEB SEARCH for finding an official Saudi statistic by topic.

Parameters

NameTypeRequiredDescription
termstringyesKeyword(s) in English or Arabic, e.g. “unemployment”, “consumer price index”, “population”, “التضخم”.
limitnumbernoMax indicators to return (1-50, default 15).

Example call

Arguments

{
  "term": "population"
}

curl

curl -X POST https://gateway.pipeworx.io/gastat/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gastat_search","arguments":{"term":"population"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gastat_search', {
  "term": "population"
});

More examples

{
  "term": "unemployment",
  "limit": 5
}

Connect

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

{
  "mcpServers": {
    "gastat": {
      "url": "https://gateway.pipeworx.io/gastat/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026