Netlify · Capability

Netlify Netlify's API documentation — Ticket

Netlify Netlify's API documentation — Ticket. 2 operations. Lead operation: Ticket. Self-contained Naftiko capability covering one Netlify business surface.

Run with Naftiko NetlifyTicket

What You Can Do

POST
Createticket — createticket
/v1/oauth/tickets
GET
Showticket — showticket
/v1/oauth/tickets/{ticket-id}

MCP Tools

createticket

createticket

showticket

showticket

read-only idempotent

Capability Spec

netlify-ticket.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Netlify Netlify's API documentation — Ticket
  description: 'Netlify Netlify''s API documentation — Ticket. 2 operations. Lead operation: Ticket. Self-contained Naftiko
    capability covering one Netlify business surface.'
  tags:
  - Netlify
  - Ticket
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NETLIFY_API_KEY: NETLIFY_API_KEY
capability:
  consumes:
  - type: http
    namespace: netlify-ticket
    baseUri: https://api.netlify.com/api/v1
    description: Netlify Netlify's API documentation — Ticket business capability. Self-contained, no shared references.
    resources:
    - name: oauth-tickets
      path: /oauth/tickets
      operations:
      - name: createticket
        method: POST
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: client_id
          in: query
          type: string
          required: true
    - name: oauth-tickets-ticket_id
      path: /oauth/tickets/{ticket_id}
      operations:
      - name: showticket
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: ticket_id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.NETLIFY_API_KEY}}'
  exposes:
  - type: rest
    namespace: netlify-ticket-rest
    port: 8080
    description: REST adapter for Netlify Netlify's API documentation — Ticket. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/oauth/tickets
      name: oauth-tickets
      description: REST surface for oauth-tickets.
      operations:
      - method: POST
        name: createticket
        description: createticket
        call: netlify-ticket.createticket
        with:
          client_id: rest.client_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/oauth/tickets/{ticket-id}
      name: oauth-tickets-ticket-id
      description: REST surface for oauth-tickets-ticket_id.
      operations:
      - method: GET
        name: showticket
        description: showticket
        call: netlify-ticket.showticket
        with:
          ticket_id: rest.ticket_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: netlify-ticket-mcp
    port: 9090
    transport: http
    description: MCP adapter for Netlify Netlify's API documentation — Ticket. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: createticket
      description: createticket
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: netlify-ticket.createticket
      with:
        client_id: tools.client_id
      outputParameters:
      - type: object
        mapping: $.
    - name: showticket
      description: showticket
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: netlify-ticket.showticket
      with:
        ticket_id: tools.ticket_id
      outputParameters:
      - type: object
        mapping: $.