drio
Open app

MCP Server for Iaptic

Source

Model Context Protocol server for interacting with iaptic

Catalog onlyCatalog onlySTDIO

Overview

MCP Server for Iaptic is a Model Context Protocol server designed to facilitate interaction with the Iaptic API, enabling AI systems like Claude to access and analyze customer data, purchases, transactions, and statistics.

To use the MCP Server, you can install it via Smithery or manually using npx. After installation, configure it with your API key and app name in your Claude Desktop configuration file.

  • Integration with Iaptic API for seamless data access - Tools for managing customers, purchases, and transactions - Ability to retrieve statistics and insights about transactions and revenue
  1. Accessing customer details and purchase history for personalized marketing.
  2. Analyzing transaction data to identify trends and improve sales strategies.
  3. Generating reports on app-specific statistics for performance evaluation.

Add to your AI client

Use these steps to connect MCP Server for Iaptic in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-iaptic-iaptic": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-iaptic-iaptic"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-iaptic-iaptic": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-iaptic-iaptic"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-iaptic-iaptic": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-iaptic-iaptic"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-iaptic-iaptic": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-iaptic-iaptic"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-iaptic-iaptic": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-iaptic-iaptic"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-iaptic-iaptic": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-iaptic-iaptic"
      ]
    }
  }
}

FAQ

What are the system requirements for MCP Server?

Node.js version 18 or higher and an Iaptic account with API credentials are required.

Is there a license for using MCP Server?

Yes, MCP Server is licensed under the MIT License, allowing for free use and modification.