Help Scout · Capability

Help Scout Mailbox API — Webhooks

Help Scout Mailbox API — Webhooks. 2 operations. Lead operation: List webhooks. Self-contained Naftiko capability covering one Helpscout business surface.

Run with Naftiko HelpscoutWebhooks

What You Can Do

GET
Listwebhooks — List webhooks
/v1/webhooks
POST
Createwebhook — Create webhook
/v1/webhooks

MCP Tools

list-webhooks

List webhooks

read-only idempotent
create-webhook

Create webhook

Capability Spec

helpscout-webhooks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Help Scout Mailbox API — Webhooks
  description: 'Help Scout Mailbox API — Webhooks. 2 operations. Lead operation: List webhooks. Self-contained Naftiko capability
    covering one Helpscout business surface.'
  tags:
  - Helpscout
  - Webhooks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HELPSCOUT_API_KEY: HELPSCOUT_API_KEY
capability:
  consumes:
  - type: http
    namespace: helpscout-webhooks
    baseUri: https://api.helpscout.net/v2
    description: Help Scout Mailbox 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
    authentication:
      type: bearer
      token: '{{env.HELPSCOUT_API_KEY}}'
  exposes:
  - type: rest
    namespace: helpscout-webhooks-rest
    port: 8080
    description: REST adapter for Help Scout Mailbox 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: helpscout-webhooks.listwebhooks
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createwebhook
        description: Create webhook
        call: helpscout-webhooks.createwebhook
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: helpscout-webhooks-mcp
    port: 9090
    transport: http
    description: MCP adapter for Help Scout Mailbox 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: helpscout-webhooks.listwebhooks
      outputParameters:
      - type: object
        mapping: $.
    - name: create-webhook
      description: Create webhook
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: helpscout-webhooks.createwebhook
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.