Postmark
live SaaSProductivityPostmark — send transactional emails, query delivery stats, inspect outbound history, manage bounces, and review server configuration.
Tools
send Send a single email.
No parameters required.
Try it
send_batch Send up to 500 emails.
No parameters required.
Try it
delivery_stats Server-level delivery stats.
No parameters required.
Try it
messages_outbound Outbound history.
No parameters required.
Try it
message_outbound_detail Single outbound detail.
No parameters required.
Try it
message_outbound_dump Raw MIME dump.
No parameters required.
Try it
bounces Bounces.
No parameters required.
Try it
bounce Single bounce.
No parameters required.
Try it
bounce_activate Re-activate a bounced address.
No parameters required.
Try it
server Current 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");