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

Arguments

{}

curl

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":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_unit_types', {});

Response shape

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",
      "items": {
        "type": "object",
        "properties": {
          "unit_type": {
            "type": "string",
            "description": "Unit type category name"
          },
          "units": {
            "type": "object",
            "properties": {
              "area_unit": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "time_unit": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "distance_unit": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "data_unit": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            },
            "description": "Valid units within this type"
          }
        }
      },
      "description": "Array of supported unit type families"
    }
  }
}

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 July 6, 2026