list_unit_types

Pack: climatiq · Endpoint: https://gateway.pipeworx.io/climatiq/mcp

List supported unit-type families (Energy / Volume / Distance / Mass / etc.) and their valid units.

Example call

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

Response shape

Always returns: count, unit_types

FieldTypeDescription
countnumberNumber of unit types returned
unit_typesarrayArray of supported unit type families
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of unit types returned"
    },
    "unit_types": {
      "type": "array",
      "description": "Array of supported unit type families",
      "items": {
        "type": "object",
        "properties": {
          "unit_type": {
            "type": [
              "string",
              "null"
            ],
            "description": "Unit type category name"
          },
          "units": {
            "type": "array",
            "description": "Valid units within this type",
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  },
  "required": [
    "count",
    "unit_types"
  ]
}

Connect

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

{
  "mcpServers": {
    "climatiq": {
      "url": "https://gateway.pipeworx.io/climatiq/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026