bounces

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

List bounced email records from the Postmark server with optional filters (type, inactive, emailFilter, tag, fromdate, todate); returns bounce type, recipient, and timestamp.

Example call

Arguments

{}

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":"bounces","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('bounces', {});

Response shape

FieldTypeDescription
TotalCountintegerTotal number of bounces
Bouncesarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "TotalCount": {
      "type": "integer",
      "description": "Total number of bounces"
    },
    "Bounces": {
      "type": "array",
      "items": {
        "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"
          }
        },
        "additionalProperties": true
      }
    }
  },
  "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