server
Pack: postmark · Endpoint: https://gateway.pipeworx.io/postmark/mcp
Fetch configuration and metadata for the current Postmark server, including name, color, delivery settings, bounce/spam threshold, and message stream settings.
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":"server","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('server', {});
Response shape
| Field | Type | Description |
|---|---|---|
ID | integer | Server identifier |
Name | string | Server name |
ApiTokens | array | List of API tokens for this server |
RawEmailEnabled | boolean | Whether raw email API is enabled |
SmtpApiActivated | boolean | Whether SMTP API is activated |
InboundHookUrl | string | Inbound webhook URL if configured |
BounceHookUrl | string | Bounce webhook URL if configured |
OpenHookUrl | string | Open tracking webhook URL if configured |
DeliveryHookUrl | string | Delivery webhook URL if configured |
ClickHookUrl | string | Click tracking webhook URL if configured |
SpamHookUrl | string | Spam complaint webhook URL if configured |
TrackOpens | boolean | Whether open tracking is enabled |
TrackLinks | string | Link tracking setting (None, HtmlAndText, HtmlOnly, TextOnly) |
PostFirstOpenOnly | boolean | Post only first open |
TrackingDomain | string | Custom tracking domain |
InboundDomain | string | Inbound domain for receiving emails |
Color | string | Server color in dashboard |
Full JSON Schema
{
"type": "object",
"properties": {
"ID": {
"type": "integer",
"description": "Server identifier"
},
"Name": {
"type": "string",
"description": "Server name"
},
"ApiTokens": {
"type": "array",
"description": "List of API tokens for this server"
},
"RawEmailEnabled": {
"type": "boolean",
"description": "Whether raw email API is enabled"
},
"SmtpApiActivated": {
"type": "boolean",
"description": "Whether SMTP API is activated"
},
"InboundHookUrl": {
"type": "string",
"description": "Inbound webhook URL if configured"
},
"BounceHookUrl": {
"type": "string",
"description": "Bounce webhook URL if configured"
},
"OpenHookUrl": {
"type": "string",
"description": "Open tracking webhook URL if configured"
},
"DeliveryHookUrl": {
"type": "string",
"description": "Delivery webhook URL if configured"
},
"ClickHookUrl": {
"type": "string",
"description": "Click tracking webhook URL if configured"
},
"SpamHookUrl": {
"type": "string",
"description": "Spam complaint webhook URL if configured"
},
"TrackOpens": {
"type": "boolean",
"description": "Whether open tracking is enabled"
},
"TrackLinks": {
"type": "string",
"description": "Link tracking setting (None, HtmlAndText, HtmlOnly, TextOnly)"
},
"PostFirstOpenOnly": {
"type": "boolean",
"description": "Post only first open"
},
"TrackingDomain": {
"type": "string",
"description": "Custom tracking domain"
},
"InboundDomain": {
"type": "string",
"description": "Inbound domain for receiving emails"
},
"Color": {
"type": "string",
"description": "Server color in dashboard"
}
},
"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.