List customers with pagination
Get detailed information about a specific customer by ID
List purchases with options for pagination, date filtering, and customer filtering
Get detailed information about a specific purchase by ID
List transactions with options for pagination, date filtering, and purchase filtering
Get detailed information about a specific transaction by ID
Get general statistics about transactions and revenue
Get app-specific statistics
List recent events with options for pagination and date filtering
Switch to a different Iaptic app
Reset to the default Iaptic app
Get information about the currently active app
The Iaptic API MCP provides a seamless interface for AI assistants to interact with your Iaptic account data. It enables access to comprehensive information about customers, purchases, transactions, and business statistics, allowing for detailed analysis and insights. With this integration, Claude and other AI assistants can answer specific questions about your business performance, customer behavior, and financial metrics by directly querying your Iaptic data. The MCP supports filtering by date ranges, pagination, and other parameters to help you find exactly the information you need.
The Iaptic API MCP allows AI assistants to access and analyze data from your Iaptic account, including customer information, purchase history, transaction details, and business statistics.
The easiest way to install the Iaptic API MCP is through Smithery:
npx -y @smithery/cli install mcp-server-iaptic --client claude
You can also install and run the MCP manually:
# Install globally
npm install -g mcp-server-iaptic
# Run the server
mcp-server-iaptic --api-key YOUR_API_KEY --app-name YOUR_APP_NAME
Or run directly with npx:
npx mcp-server-iaptic --api-key YOUR_API_KEY --app-name YOUR_APP_NAME
To use the Iaptic API MCP with Claude Desktop, add the following to your Claude Desktop configuration file:
{
"mcpServers": {
"iaptic": {
"command": "npx",
"args": [
"mcp-server-iaptic",
"--api-key", "your-api-key-here",
"--app-name", "your-app-name-here"
]
}
}
}
Replace your-api-key-here
with your actual Iaptic API key and your-app-name-here
with your Iaptic application name.
If you need to work with multiple Iaptic applications, you can use the app management tools to switch between them during a session:
iaptic_switch_app
to change to a different app when needediaptic_reset_app
to return to your default appiaptic_current_app
to check which app is currently activeHere are some examples of how to use the Iaptic API MCP with Claude:
Get recent customer information: "Show me a list of our most recent customers"
Analyze purchase trends: "What were our total sales in the last month?"
Get transaction details: "Show me the details of transaction ID 12345"
View business statistics: "What are our current revenue statistics?"
Switch between apps: "Please switch to my TestApp application using API key test_key_123"