Toyota · Capability

Toyota Connected Services API — Climate

Toyota Connected Services API — Climate. 3 operations. Lead operation: Get Climate Status. Self-contained Naftiko capability covering one Toyota business surface.

Run with Naftiko ToyotaClimate

What You Can Do

GET
Getclimatestatus — Get Climate Status
/v1/vehicles/{vin}/climate
PUT
Updateclimatesettings — Update Climate Settings
/v1/vehicles/{vin}/climate
POST
Sendclimatecommand — Send Climate Command
/v1/vehicles/{vin}/climate/command

MCP Tools

get-climate-status

Get Climate Status

read-only idempotent
update-climate-settings

Update Climate Settings

idempotent
send-climate-command

Send Climate Command

Capability Spec

connected-services-climate.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Toyota Connected Services API — Climate
  description: 'Toyota Connected Services API — Climate. 3 operations. Lead operation: Get Climate Status. Self-contained
    Naftiko capability covering one Toyota business surface.'
  tags:
  - Toyota
  - Climate
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TOYOTA_API_KEY: TOYOTA_API_KEY
capability:
  consumes:
  - type: http
    namespace: connected-services-climate
    baseUri: https://api.toyota.com/connected/v1
    description: Toyota Connected Services API — Climate business capability. Self-contained, no shared references.
    resources:
    - name: vehicles-vin-climate
      path: /vehicles/{vin}/climate
      operations:
      - name: getclimatestatus
        method: GET
        description: Get Climate Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: vin
          in: path
          type: string
          required: true
      - name: updateclimatesettings
        method: PUT
        description: Update Climate Settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: vin
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: vehicles-vin-climate-command
      path: /vehicles/{vin}/climate/command
      operations:
      - name: sendclimatecommand
        method: POST
        description: Send Climate Command
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: vin
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.TOYOTA_API_KEY}}'
  exposes:
  - type: rest
    namespace: connected-services-climate-rest
    port: 8080
    description: REST adapter for Toyota Connected Services API — Climate. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/vehicles/{vin}/climate
      name: vehicles-vin-climate
      description: REST surface for vehicles-vin-climate.
      operations:
      - method: GET
        name: getclimatestatus
        description: Get Climate Status
        call: connected-services-climate.getclimatestatus
        with:
          vin: rest.vin
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateclimatesettings
        description: Update Climate Settings
        call: connected-services-climate.updateclimatesettings
        with:
          vin: rest.vin
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/vehicles/{vin}/climate/command
      name: vehicles-vin-climate-command
      description: REST surface for vehicles-vin-climate-command.
      operations:
      - method: POST
        name: sendclimatecommand
        description: Send Climate Command
        call: connected-services-climate.sendclimatecommand
        with:
          vin: rest.vin
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: connected-services-climate-mcp
    port: 9090
    transport: http
    description: MCP adapter for Toyota Connected Services API — Climate. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-climate-status
      description: Get Climate Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connected-services-climate.getclimatestatus
      with:
        vin: tools.vin
      outputParameters:
      - type: object
        mapping: $.
    - name: update-climate-settings
      description: Update Climate Settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: connected-services-climate.updateclimatesettings
      with:
        vin: tools.vin
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: send-climate-command
      description: Send Climate Command
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: connected-services-climate.sendclimatecommand
      with:
        vin: tools.vin
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.