postscript_list_subscribers
ActiveTool of Postscript
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 schema
{
"type": "object",
"required": [
"_apiKey"
],
"properties": {
"page": {
"type": "number",
"description": "1-indexed page number (default 1). Walk until page === page_info.total_pages."
},
"sort": {
"type": "string",
"description": "Sort spec like \"created_at__desc\" or \"updated_at__asc\"."
},
"_apiKey": {
"type": "string",
"description": "Postscript Private API token (Bearer). From Settings → API."
},
"email__eq": {
"type": "string",
"description": "Exact email match."
},
"created_at__gte": {
"type": "string",
"description": "ISO timestamp; subscribers created on/after this time."
},
"created_at__lte": {
"type": "string",
"description": "ISO timestamp; subscribers created on/before this time."
},
"email__contains": {
"type": "string",
"description": "Substring email match."
},
"updated_at__gte": {
"type": "string",
"description": "ISO timestamp; subscribers updated on/after this time."
},
"phone_number__eq": {
"type": "string",
"description": "Exact phone match (E.164, e.g. +15551234567)."
},
"phone_number__contains": {
"type": "string",
"description": "Substring phone match."
},
"shopify_customer_id__eq": {
"type": "string",
"description": "Exact Shopify customer ID match."
}
}
}Parent server
Postscript
https://github.com/pipeworx-io/mcp-postscript
1/7 registries