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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
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
| Field | Type | Description |
|---|---|---|
ID | string | Bounce identifier |
Type | string | Bounce type (Permanent or Transient) |
Email | string | Bounced email address |
BouncedAt | string | ISO timestamp of bounce |
Details | string | Bounce details message |
DumpAvailable | boolean | Whether message dump is available |
Inactive | boolean | Whether 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.