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

FieldTypeDescription
IDintegerServer identifier
NamestringServer name
ApiTokensarrayList of API tokens for this server
RawEmailEnabledbooleanWhether raw email API is enabled
SmtpApiActivatedbooleanWhether SMTP API is activated
InboundHookUrlstringInbound webhook URL if configured
BounceHookUrlstringBounce webhook URL if configured
OpenHookUrlstringOpen tracking webhook URL if configured
DeliveryHookUrlstringDelivery webhook URL if configured
ClickHookUrlstringClick tracking webhook URL if configured
SpamHookUrlstringSpam complaint webhook URL if configured
TrackOpensbooleanWhether open tracking is enabled
TrackLinksstringLink tracking setting (None, HtmlAndText, HtmlOnly, TextOnly)
PostFirstOpenOnlybooleanPost only first open
TrackingDomainstringCustom tracking domain
InboundDomainstringInbound domain for receiving emails
ColorstringServer 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.

Regenerated from source · build July 9, 2026