opendosm_list_datasets
Pack: opendosm-my · Endpoint: https://gateway.pipeworx.io/opendosm-my/mcp
List the curated, verified high-value datasets available from data.gov.my / OpenDOSM (Dept of Statistics Malaysia).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
topic | string | no | Optional topic filter, e.g. “inflation”, “labour”, “population”, “gdp”, “prices”, “income”, “demography”, “industry”. |
Example call
Arguments
{
"topic": "inflation"
}
curl
curl -X POST https://gateway.pipeworx.io/opendosm-my/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"opendosm_list_datasets","arguments":{"topic":"inflation"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('opendosm_list_datasets', {
"topic": "inflation"
});
More examples
{}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"opendosm-my": {
"url": "https://gateway.pipeworx.io/opendosm-my/mcp"
}
}
}
See Getting Started for client-specific install steps.