Tropic · Capability

Tropic API — Webhooks

Tropic API — Webhooks. 3 operations. Lead operation: List Webhooks. Self-contained Naftiko capability covering one Tropic business surface.

Run with Naftiko TropicWebhooks

What You Can Do

GET
Listwebhooks — List Webhooks
/v1/webhooks
POST
Createwebhook — Create Webhook
/v1/webhooks
DELETE
Deletewebhook — Delete Webhook
/v1/webhooks/{id}

MCP Tools

list-webhooks

List Webhooks

read-only idempotent
create-webhook

Create Webhook

delete-webhook

Delete Webhook

idempotent

Capability Spec

tropic-webhooks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tropic API — Webhooks
  description: 'Tropic API — Webhooks. 3 operations. Lead operation: List Webhooks. Self-contained Naftiko capability covering
    one Tropic business surface.'
  tags:
  - Tropic
  - Webhooks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TROPIC_API_KEY: TROPIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: tropic-webhooks
    baseUri: https://api.tropicapp.io/v1
    description: Tropic API — Webhooks business capability. Self-contained, no shared references.
    resources:
    - name: webhooks
      path: /webhooks
      operations:
      - name: listwebhooks
        method: GET
        description: List Webhooks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createwebhook
        method: POST
        description: Create Webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: webhooks-id
      path: /webhooks/{id}
      operations:
      - name: deletewebhook
        method: DELETE
        description: Delete Webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.TROPIC_API_KEY}}'
  exposes:
  - type: rest
    namespace: tropic-webhooks-rest
    port: 8080
    description: REST adapter for Tropic API — Webhooks. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/webhooks
      name: webhooks
      description: REST surface for webhooks.
      operations:
      - method: GET
        name: listwebhooks
        description: List Webhooks
        call: tropic-webhooks.listwebhooks
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createwebhook
        description: Create Webhook
        call: tropic-webhooks.createwebhook
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/webhooks/{id}
      name: webhooks-id
      description: REST surface for webhooks-id.
      operations:
      - method: DELETE
        name: deletewebhook
        description: Delete Webhook
        call: tropic-webhooks.deletewebhook
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tropic-webhooks-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tropic API — Webhooks. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-webhooks
      description: List Webhooks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tropic-webhooks.listwebhooks
      outputParameters:
      - type: object
        mapping: $.
    - name: create-webhook
      description: Create Webhook
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tropic-webhooks.createwebhook
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-webhook
      description: Delete Webhook
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tropic-webhooks.deletewebhook
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.