Postmark · Capability

Postmark API — Dump

Postmark API — Dump. 2 operations. Lead operation: Postmark Get bounce dump. Self-contained Naftiko capability covering one Postmark business surface.

Run with Naftiko PostmarkDump

What You Can Do

GET
Get — Postmark Get bounce dump
/v1/bounces/{bounceid}/dump
GET
Get — Postmark Outbound message dump
/v1/messages/outbound/{messageid}/dump

MCP Tools

postmark-get-bounce-dump

Postmark Get bounce dump

read-only idempotent
postmark-outbound-message-dump

Postmark Outbound message dump

read-only idempotent

Capability Spec

postmark-dump.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Postmark API — Dump
  description: 'Postmark API — Dump. 2 operations. Lead operation: Postmark Get bounce dump. Self-contained Naftiko capability
    covering one Postmark business surface.'
  tags:
  - Postmark
  - Dump
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    POSTMARK_API_KEY: POSTMARK_API_KEY
capability:
  consumes:
  - type: http
    namespace: postmark-dump
    baseUri: http://{{baseurl}}
    description: Postmark API — Dump business capability. Self-contained, no shared references.
    resources:
    - name: bounces-bounceid-dump
      path: /bounces/{bounceid}/dump
      operations:
      - name: get
        method: GET
        description: Postmark Get bounce dump
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: bounceid
          in: path
          type: string
          description: The ID of the bounce to retrieve.
          required: true
    - name: messages-outbound-messageid-dump
      path: /messages/outbound/{messageid}/dump
      operations:
      - name: get
        method: GET
        description: Postmark Outbound message dump
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: messageid
          in: path
          type: string
          description: The ID of the message which should bypass inbound rules.
          required: true
  exposes:
  - type: rest
    namespace: postmark-dump-rest
    port: 8080
    description: REST adapter for Postmark API — Dump. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/bounces/{bounceid}/dump
      name: bounces-bounceid-dump
      description: REST surface for bounces-bounceid-dump.
      operations:
      - method: GET
        name: get
        description: Postmark Get bounce dump
        call: postmark-dump.get
        with:
          bounceid: rest.bounceid
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/messages/outbound/{messageid}/dump
      name: messages-outbound-messageid-dump
      description: REST surface for messages-outbound-messageid-dump.
      operations:
      - method: GET
        name: get
        description: Postmark Outbound message dump
        call: postmark-dump.get
        with:
          messageid: rest.messageid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: postmark-dump-mcp
    port: 9090
    transport: http
    description: MCP adapter for Postmark API — Dump. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: postmark-get-bounce-dump
      description: Postmark Get bounce dump
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: postmark-dump.get
      with:
        bounceid: tools.bounceid
      outputParameters:
      - type: object
        mapping: $.
    - name: postmark-outbound-message-dump
      description: Postmark Outbound message dump
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: postmark-dump.get
      with:
        messageid: tools.messageid
      outputParameters:
      - type: object
        mapping: $.