Connections & Capabilities
Connects To
Capabilities
Quickstart
Install
npx -y @smithery/cli install mcp-server-iaptic --client claudeConfig
{
"iaptic": {
"command": "npx",
"args": [
"mcp-server-iaptic",
"--api-key", "your-api-key-here",
"--app-name", "your-app-name-here"
]
}
}Exposed MCP Tools (12)
customer_listLists all customers.
Read-only operation.
customer_getRetrieves details for a specific customer by ID.
Read-only operation.
purchase_listLists purchases with filtering and pagination.
Read-only operation with limits.
purchase_getRetrieves details for a specific purchase by ID.
Read-only operation.
transaction_listLists transactions with filtering and pagination.
Read-only operation with limits.
transaction_getRetrieves details for a specific transaction by ID.
Read-only operation.
stats_getRetrieves general statistics about transactions and revenue.
Read-only operation.
stats_appRetrieves app-specific statistics.
Read-only operation.
event_listLists recent events with filtering and pagination.
Read-only operation with limits.
iaptic_switch_appSwitches to a different Iaptic app using provided credentials.
Modifies the active app context and requires API key.
iaptic_reset_appResets to the default Iaptic app.
Changes the active app context.
iaptic_current_appRetrieves information about the currently active app.
Read-only operation.
Safety Assessment
This server is relatively safe for read operations. Exercise caution when using write operations, ensuring the API key is securely managed. It's risky if the API key is exposed, potentially leading to unauthorized data modification.
- API key authentication required.
- Read and write operations are available, but limited to Iaptic data.
- Clear separation of concerns with specific tools for each data type.
- Rate limiting on the Iaptic API provides some protection against abuse.
- API key management is the user's responsibility.
- No built-in sandboxing; relies on Iaptic API security.
- Potential for data exposure if API key is compromised.
- Write operations can modify data within Iaptic.
