linode · Capability

Linode API v4 — Support

Linode API v4 — Support. 2 operations. Lead operation: List support tickets. Self-contained Naftiko capability covering one Linode business surface.

Run with Naftiko LinodeSupport

What You Can Do

GET
Getsupporttickets — List support tickets
/v1/support/tickets
POST
Createsupportticket — Open a support ticket
/v1/support/tickets

MCP Tools

list-support-tickets

List support tickets

read-only idempotent
open-support-ticket

Open a support ticket

Capability Spec

api-v4-support.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Linode API v4 — Support
  description: 'Linode API v4 — Support. 2 operations. Lead operation: List support tickets. Self-contained Naftiko capability
    covering one Linode business surface.'
  tags:
  - Linode
  - Support
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LINODE_API_KEY: LINODE_API_KEY
capability:
  consumes:
  - type: http
    namespace: api-v4-support
    baseUri: https://api.linode.com/v4
    description: Linode API v4 — Support business capability. Self-contained, no shared references.
    resources:
    - name: support-tickets
      path: /support/tickets
      operations:
      - name: getsupporttickets
        method: GET
        description: List support tickets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createsupportticket
        method: POST
        description: Open a support ticket
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.LINODE_API_KEY}}'
  exposes:
  - type: rest
    namespace: api-v4-support-rest
    port: 8080
    description: REST adapter for Linode API v4 — Support. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/support/tickets
      name: support-tickets
      description: REST surface for support-tickets.
      operations:
      - method: GET
        name: getsupporttickets
        description: List support tickets
        call: api-v4-support.getsupporttickets
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsupportticket
        description: Open a support ticket
        call: api-v4-support.createsupportticket
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: api-v4-support-mcp
    port: 9090
    transport: http
    description: MCP adapter for Linode API v4 — Support. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-support-tickets
      description: List support tickets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-v4-support.getsupporttickets
      outputParameters:
      - type: object
        mapping: $.
    - name: open-support-ticket
      description: Open a support ticket
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: api-v4-support.createsupportticket
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.