table_metadata

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

Get the structure/metadata for a Singapore statistics table by resourceId (get ids from search_tables): theme, subject, frequency, period coverage and the list of variables/series. Result is under Data.records.

Parameters

NameTypeRequiredDescription
resourceIdstringyesTable id from search_tables, e.g. “M810001”.

Example call

Arguments

{
  "resourceId": "M810001"
}

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":"table_metadata","arguments":{"resourceId":"M810001"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('table_metadata', {
  "resourceId": "M810001"
});

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