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

FieldTypeDescription
InactiveMailsintegerCount of inactive mails
BouncesarrayBounce statistics by type
SpamComplaintsarraySpam complaint statistics
RejectsarrayReject statistics by reason
DeliveriesarrayDelivery 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.

Regenerated from source · build July 9, 2026