search_datasets

Pack: data-qatar · Endpoint: https://gateway.pipeworx.io/data-qatar/mcp

Search Qatar government open data for datasets by keyword (population, economic indicators, trade, labor, environment, SDG social statistics). Returns dataset_ids (pass to query/dataset_info), bilingual English/Arabic titles, and record counts.

Parameters

NameTypeRequiredDescription
querystringnoKeyword(s) to search dataset titles/descriptions, e.g. “population”.
limitnumbernoMax datasets (1-100, default 20).
offsetnumbernoPagination offset (default 0).

Example call

Arguments

{
  "query": "population"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "query": "trade",
  "limit": 10,
  "offset": 0
}

Connect

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

{
  "mcpServers": {
    "data-qatar": {
      "url": "https://gateway.pipeworx.io/data-qatar/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026