list_customers lists User rows that have an Order. Admin only. Do not paste emails into public channels.
Admin ops. Fulfillment / customer data. Requires admin after MCP OAuth. No refund, cancel, or charge.
List customers who ordered this month.
Use q to match email or name. For a date-bounded digest, prefer list_orders or summarize_orders.
Arguments
| Name | Type | Required |
|---|---|---|
q | string | No |
page | integer ≥ 1 | No |
pageSize | integer 1–50 | No |
Request
{ "page": 1, "pageSize": 20 }Response
{
"customers": [
{
"id": "user_1",
"name": "Ops",
"email": "ops@example.com",
"orderCount": 2,
"latestOrderAt": "2026-09-01T00:00:00.000Z"
}
]
}