postscript_list_subscribers

Pack: postscript · Endpoint: https://gateway.pipeworx.io/postscript/mcp

List SMS subscribers for a Postscript (Shopify) shop. Supports filtering by email, phone number, Shopify customer ID, and created/updated timestamps, plus sorting. Page-based pagination: returns { page_info: { page, total_pages }, subscribers: […] }; pass page to walk results.

Parameters

NameTypeRequiredDescription
_apiKeystringyesPostscript Private API token (Bearer). From Settings → API.
pagenumberno1-indexed page number (default 1). Walk until page === page_info.total_pages.
sortstringnoSort spec like “created_at__desc” or “updated_at__asc”.
email__eqstringnoExact email match.
email__containsstringnoSubstring email match.
phone_number__eqstringnoExact phone match (E.164, e.g. +15551234567).
phone_number__containsstringnoSubstring phone match.
shopify_customer_id__eqstringnoExact Shopify customer ID match.
created_at__gtestringnoISO timestamp; subscribers created on/after this time.
created_at__ltestringnoISO timestamp; subscribers created on/before this time.
updated_at__gtestringnoISO timestamp; subscribers updated on/after this time.

Example call

curl -X POST https://gateway.pipeworx.io/postscript/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"postscript_list_subscribers","arguments":{}}}'

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "postscript": {
      "url": "https://gateway.pipeworx.io/postscript/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build June 1, 2026