get_catalogue_data
Fetch specific dataset information from Malaysia's open government data platform using a unique ID, with optional record limits, via Data.gov.my MCP Server.
Instructions
Fetch actual data from the data.gov.my API for a specific catalogue.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the dataset | |
limit | No | Number of records to fetch (optional, default 100) |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID of the dataset",
"type": "string"
},
"limit": {
"description": "Number of records to fetch (optional, default 100)",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}