Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-iaptic": {
"args": [
"-y",
"mcp-server-iaptic"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mcp-server-iaptic' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-server-iaptic against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / ecommerce
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Iaptic and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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_NAME
Add 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 purchases
limit: 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 filtering
limit: Maximum number of transactions to return (default: 100, max: 1000)offset: Number of transactions to skip for paginationstartdate: Filter transactions after this date (ISO format, e.g. 2024-01-01)enddate: Filter transactions before this date (ISO format, e.g. 2024-12-31)purchaseId: Filter by purchase IDtransaction_get: Get transaction details by IDstats_get: Get general statistics about transactions and revenuestats_app: Get app-specific statisticsevent_list: List recent events with pagination and date filtering
limit: Maximum number of events to return (default: 100)offset: Number of events to skip for paginationstartdate: Filter events after this date (ISO format, e.g. 2024-01-01)enddate: Filter events before this date (ISO format, e.g. 2024-12-31)raw: Return raw JSON instead of formatted output (default: false)event_details: Get detailed information about a specific event (validator 3.12+)
eventId: The event ID to get details forreceipts: Include receipt validation details (default: false)stripe_prices: Get available Stripe products and pricesiaptic_switch_app: Switch to a different Iaptic app
appName: Name of the app to switch toapiKey: API key for the appiaptic_reset_app: Reset to the default Iaptic appiaptic_current_app: Get information about the currently active app# Install dependencies
npm install
# Run in development mode
npm run dev
# Build for production
npm run build
# Run production build
npm start
MIT