bounce

Pack: postmark · Endpoint: https://gateway.pipeworx.io/postmark/mcp

Fetch full details for a single Postmark bounce record by numeric id, including bounce type, recipient email, description, and raw bounce content.

Parameters

NameTypeRequiredDescription
idstringyes

Example call

Arguments

{
  "id": "123456789"
}

curl

curl -X POST https://gateway.pipeworx.io/postmark/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bounce","arguments":{"id":"123456789"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('bounce', {
  "id": "123456789"
});

Response shape

FieldTypeDescription
IDstringBounce identifier
TypestringBounce type (Permanent or Transient)
EmailstringBounced email address
BouncedAtstringISO timestamp of bounce
DetailsstringBounce details message
DumpAvailablebooleanWhether message dump is available
InactivebooleanWhether address is marked inactive
Full JSON Schema
{
  "type": "object",
  "properties": {
    "ID": {
      "type": "string",
      "description": "Bounce identifier"
    },
    "Type": {
      "type": "string",
      "description": "Bounce type (Permanent or Transient)"
    },
    "Email": {
      "type": "string",
      "description": "Bounced email address"
    },
    "BouncedAt": {
      "type": "string",
      "description": "ISO timestamp of bounce"
    },
    "Details": {
      "type": "string",
      "description": "Bounce details message"
    },
    "DumpAvailable": {
      "type": "boolean",
      "description": "Whether message dump is available"
    },
    "Inactive": {
      "type": "boolean",
      "description": "Whether address is marked inactive"
    }
  },
  "additionalProperties": true
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "postmark": {
      "url": "https://gateway.pipeworx.io/postmark/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 9, 2026