search_tables

Pack: singstat-sg · Endpoint: https://gateway.pipeworx.io/singstat-sg/mcp

Search Singapore official statistics tables (Department of Statistics Singapore) by keyword.

Parameters

NameTypeRequiredDescription
keywordstringyesSearch term, e.g. “population”, “gdp”, “cpi”.
searchOptionstringnoWhere to match the keyword. “all” (default) searches everything, “title” only table titles, “variable” only variable names.

Example call

Arguments

{
  "keyword": "population"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "keyword": "gdp",
  "searchOption": "title"
}

Connect

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

{
  "mcpServers": {
    "singstat-sg": {
      "url": "https://gateway.pipeworx.io/singstat-sg/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026