Climatiq · Capability

Climatiq API — Reference

Climatiq API — Reference. 2 operations. Lead operation: List supported regions. Self-contained Naftiko capability covering one Climatiq business surface.

Run with Naftiko ClimatiqReference

What You Can Do

GET
Listregions — List supported regions
/v1/data/v1/regions
GET
Listunittypes — List supported unit types
/v1/data/v1/unit-types

MCP Tools

list-supported-regions

List supported regions

read-only idempotent
list-supported-unit-types

List supported unit types

read-only idempotent

Capability Spec

climatiq-reference.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Climatiq API — Reference
  description: 'Climatiq API — Reference. 2 operations. Lead operation: List supported regions. Self-contained Naftiko capability
    covering one Climatiq business surface.'
  tags:
  - Climatiq
  - Reference
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CLIMATIQ_API_KEY: CLIMATIQ_API_KEY
capability:
  consumes:
  - type: http
    namespace: climatiq-reference
    baseUri: https://api.climatiq.io
    description: Climatiq API — Reference business capability. Self-contained, no shared references.
    resources:
    - name: data-v1-regions
      path: /data/v1/regions
      operations:
      - name: listregions
        method: GET
        description: List supported regions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: data-v1-unit-types
      path: /data/v1/unit-types
      operations:
      - name: listunittypes
        method: GET
        description: List supported unit types
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.CLIMATIQ_API_KEY}}'
  exposes:
  - type: rest
    namespace: climatiq-reference-rest
    port: 8080
    description: REST adapter for Climatiq API — Reference. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/data/v1/regions
      name: data-v1-regions
      description: REST surface for data-v1-regions.
      operations:
      - method: GET
        name: listregions
        description: List supported regions
        call: climatiq-reference.listregions
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/data/v1/unit-types
      name: data-v1-unit-types
      description: REST surface for data-v1-unit-types.
      operations:
      - method: GET
        name: listunittypes
        description: List supported unit types
        call: climatiq-reference.listunittypes
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: climatiq-reference-mcp
    port: 9090
    transport: http
    description: MCP adapter for Climatiq API — Reference. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-supported-regions
      description: List supported regions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: climatiq-reference.listregions
      outputParameters:
      - type: object
        mapping: $.
    - name: list-supported-unit-types
      description: List supported unit types
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: climatiq-reference.listunittypes
      outputParameters:
      - type: object
        mapping: $.