Supaglue · Capability

Unified Ticketing API (Preview) — Contacts

Unified Ticketing API (Preview) — Contacts. 2 operations. Lead operation: List contacts. Self-contained Naftiko capability covering one Supaglue business surface.

Run with Naftiko SupaglueContacts

What You Can Do

GET
Listcontacts — List contacts
/v1/contacts
GET
Getcontact — Get contact
/v1/contacts/{contact-id}

MCP Tools

list-contacts

List contacts

read-only idempotent
get-contact

Get contact

read-only idempotent

Capability Spec

ticketing-contacts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Unified Ticketing API (Preview) — Contacts
  description: 'Unified Ticketing API (Preview) — Contacts. 2 operations. Lead operation: List contacts. Self-contained Naftiko
    capability covering one Supaglue business surface.'
  tags:
  - Supaglue
  - Contacts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SUPAGLUE_API_KEY: SUPAGLUE_API_KEY
capability:
  consumes:
  - type: http
    namespace: ticketing-contacts
    baseUri: https://api.supaglue.io/ticketing/v2
    description: Unified Ticketing API (Preview) — Contacts business capability. Self-contained, no shared references.
    resources:
    - name: contacts
      path: /contacts
      operations:
      - name: listcontacts
        method: GET
        description: List contacts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: contacts-contact_id
      path: /contacts/{contact_id}
      operations:
      - name: getcontact
        method: GET
        description: Get contact
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.SUPAGLUE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: ticketing-contacts-rest
    port: 8080
    description: REST adapter for Unified Ticketing API (Preview) — Contacts. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/contacts
      name: contacts
      description: REST surface for contacts.
      operations:
      - method: GET
        name: listcontacts
        description: List contacts
        call: ticketing-contacts.listcontacts
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/contacts/{contact-id}
      name: contacts-contact-id
      description: REST surface for contacts-contact_id.
      operations:
      - method: GET
        name: getcontact
        description: Get contact
        call: ticketing-contacts.getcontact
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ticketing-contacts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Unified Ticketing API (Preview) — Contacts. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-contacts
      description: List contacts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ticketing-contacts.listcontacts
      outputParameters:
      - type: object
        mapping: $.
    - name: get-contact
      description: Get contact
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ticketing-contacts.getcontact
      outputParameters:
      - type: object
        mapping: $.