Postmark
liveSaaSProductivityPostmark — send transactional emails, query delivery stats, inspect outbound history, manage bounces, and review server configuration.
Tools
sendSend a single email.
No parameters required.
Try it
send_batchSend up to 500 emails.
No parameters required.
Try it
delivery_statsServer-level delivery stats.
No parameters required.
Try it
messages_outboundOutbound history.
No parameters required.
Try it
message_outbound_detailSingle outbound detail.
No parameters required.
Try it
message_outbound_dumpRaw MIME dump.
No parameters required.
Try it
bouncesBounces.
No parameters required.
Try it
bounceSingle bounce.
No parameters required.
Try it
bounce_activateRe-activate a bounced address.
No parameters required.
Try it
serverCurrent server info.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/postmark/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/postmark/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"send","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("send", {});// Or ask in plain English:
const answer = await px.ask("postmark — send transactional emails, query delivery stats, inspect outbound history, manage bounces, and review server configuration");