delivery_stats
Pack: postmark · Endpoint: https://gateway.pipeworx.io/postmark/mcp
Server-level delivery stats.
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":"delivery_stats","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('delivery_stats', {});
Response shape
| Field | Type | Description |
|---|---|---|
InactiveMails | integer | Count of inactive mails |
Bounces | array | Bounce statistics by type |
SpamComplaints | array | Spam complaint statistics |
Rejects | array | Reject statistics by reason |
Deliveries | array | Delivery statistics |
Full JSON Schema
{
"type": "object",
"properties": {
"InactiveMails": {
"type": "integer",
"description": "Count of inactive mails"
},
"Bounces": {
"type": "array",
"description": "Bounce statistics by type"
},
"SpamComplaints": {
"type": "array",
"description": "Spam complaint statistics"
},
"Rejects": {
"type": "array",
"description": "Reject statistics by reason"
},
"Deliveries": {
"type": "array",
"description": "Delivery statistics"
}
},
"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.