Server for Singapore Government Open Data

datagovsg_initiate_download

Initiate download of a data.gov.sg dataset with optional filtering

Remote aniruddha-adhikary/gahmen-mcp

Other tools also called datagovsg_initiate_download? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "filters": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "columnName",
          "type"
        ],
        "properties": {
          "type": {
            "enum": [
              "EQ",
              "LIKE",
              "ILIKE"
            ],
            "type": "string"
          },
          "value": {},
          "columnName": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "description": "Filters to apply to the dataset"
    },
    "datasetId": {
      "type": "string",
      "description": "ID of the dataset"
    },
    "columnNames": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of columns to include"
    }
  }
}