Iaptic MCP Server

Official

customer_list

List customers from your Iaptic account.

  • Returns a paginated list of customers with their purchase status
  • Each customer includes:
    • Application username
    • Last purchase information
    • Subscription status (active/lapsed)
    • Renewal intent
    • Trial/introductory period status
  • Use limit and offset for pagination (default: 100 customers per page)
  • Results are ordered by creation date (newest first)

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of customers to return (default: 100)
offsetNoNumber of customers to skip for pagination

Input Schema (JSON Schema)

{ "properties": { "limit": { "description": "Maximum number of customers to return (default: 100)", "type": "number" }, "offset": { "description": "Number of customers to skip for pagination", "type": "number" } }, "type": "object" }