iaptic/mcp-server-iaptic
Model Context Protocol server for interacting with iaptic
Platform-specific configuration:
{
"mcpServers": {
"mcp-server-iaptic": {
"command": "npx",
"args": [
"-y",
"mcp-server-iaptic"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://smithery.ai/server/mcp-server-iaptic)
A Model Context Protocol server for interacting with the Iaptic API. This server allows Claude or other AIs to interact with your Iaptic data to answer questions about your customers, purchases, transactions, and statistics.
To install Iaptic for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install mcp-server-iaptic --client claude# Run directly with npx
npx mcp-server-iaptic --api-key YOUR_API_KEY --app-name YOUR_APP_NAME
# Or install globally
npm install -g mcp-server-iaptic
mcp-server-iaptic --api-key YOUR_API_KEY --app-name YOUR_APP_NAMEAdd to your Claude Desktop configuration file:
{
"iaptic": {
"command": "npx",
"args": [
"mcp-server-iaptic",
"--api-key", "your-api-key-here",
"--app-name", "your-app-name-here"
]
}
}customer_list: List customers with paginationcustomer_get: Get detailed customer information by IDcustomer_subscription: Get customer's active subscription statuscustomer_transactions: Get customer's transaction historycustomer_add_purchase: Manually associate a purchase with a customerpurchase_list: List purchaseslimit: Maximum number of purchases to return (default: 100, max: 1000)offset: Number of purchases to skip for paginationstartdate: Filter purchases after this date (ISO format, e.g. 2024-01-01)enddate: Filter purchases before this date (ISO format, e.g. 2024-12-31)customerId: Filter by customer IDpurchase_get: Get purchase details by IDtransaction_list: List transactions with pagination and date filtLoading reviews...