Toyota · Capability

Toyota Connected Services API — Remote

Toyota Connected Services API — Remote. 2 operations. Lead operation: Send Climate Command. Self-contained Naftiko capability covering one Toyota business surface.

Run with Naftiko ToyotaRemote

What You Can Do

POST
Sendclimatecommand — Send Climate Command
/v1/vehicles/{vin}/climate/command
POST
Sendremotecommand — Send Remote Command
/v1/vehicles/{vin}/remote-command

MCP Tools

send-climate-command

Send Climate Command

send-remote-command

Send Remote Command

Capability Spec

connected-services-remote.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Toyota Connected Services API — Remote
  description: 'Toyota Connected Services API — Remote. 2 operations. Lead operation: Send Climate Command. Self-contained
    Naftiko capability covering one Toyota business surface.'
  tags:
  - Toyota
  - Remote
  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-remote
    baseUri: https://api.toyota.com/connected/v1
    description: Toyota Connected Services API — Remote business capability. Self-contained, no shared references.
    resources:
    - 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
    - name: vehicles-vin-remote-command
      path: /vehicles/{vin}/remote-command
      operations:
      - name: sendremotecommand
        method: POST
        description: Send Remote 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-remote-rest
    port: 8080
    description: REST adapter for Toyota Connected Services API — Remote. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - 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-remote.sendclimatecommand
        with:
          vin: rest.vin
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/vehicles/{vin}/remote-command
      name: vehicles-vin-remote-command
      description: REST surface for vehicles-vin-remote-command.
      operations:
      - method: POST
        name: sendremotecommand
        description: Send Remote Command
        call: connected-services-remote.sendremotecommand
        with:
          vin: rest.vin
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: connected-services-remote-mcp
    port: 9090
    transport: http
    description: MCP adapter for Toyota Connected Services API — Remote. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: send-climate-command
      description: Send Climate Command
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: connected-services-remote.sendclimatecommand
      with:
        vin: tools.vin
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: send-remote-command
      description: Send Remote Command
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: connected-services-remote.sendremotecommand
      with:
        vin: tools.vin
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.