iaptic_mcp-server-iaptic
A Model Context Protocol server for interacting with the Iaptic API, enabling AI models like Claude to access and process data related to customers, purchases, transactions, and statistics.
MCP Server for 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.
Installation
# 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
Usage with Claude Desktop
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"
]
}
}
Available Tools
Customers
customer_list
: List customerscustomer_get
: Get customer details by ID
Purchases
purchase_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 ID
purchase_get
: Get purchase details by ID
Transactions
transaction_list
: List transactions with pagination and date filteringlimit
: 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 ID
transaction_get
: Get transaction details by ID
Statistics
stats_get
: Get general statistics about transactions and revenuestats_app
: Get app-specific statistics
Development
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build for production
npm run build
# Run production build
npm start
Requirements
- Node.js >= 18
- An Iaptic account with API credentials
License
MIT
Related MCP Servers
View all customer_data_platforms servers →mcp-hubspot
by peakmojo
A Model Context Protocol (MCP) server that enables AI assistants to interact with HubSpot CRM data.
freshdesk_mcp
by effytech
An MCP server implementation that integrates with Freshdesk, enabling AI models to interact with Freshdesk modules and perform various support operations.
mcp-dynamics365-server
by srikanth-paladugula
The Microsoft Dynamics 365 MCP Server is a Model Context Protocol server that facilitates interaction with Microsoft Dynamics 365, allowing operations such as retrieving user information, managing accounts, and handling opportunities.
salesforce-mcp-server
by kablewy
A Model Context Protocol server implementation for interacting with Salesforce through its REST API using jsforce.
woocommerce-mcp-server
by techspawn
A Model Context Protocol (MCP) server for WooCommerce integration, compatible with Windows, macOS, and Linux.
mcp-intercom
by fabian1710
A Model Context Protocol (MCP) server that provides access to Intercom conversations and chats.