{"id":26570819,"url":"https://github.com/iaptic/mcp-server-iaptic","last_synced_at":"2026-01-11T23:55:09.576Z","repository":{"id":273266656,"uuid":"917907724","full_name":"iaptic/mcp-server-iaptic","owner":"iaptic","description":" Model Context Protocol server for interacting with iaptic","archived":false,"fork":false,"pushed_at":"2025-02-26T16:31:46.000Z","size":31,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-26T17:25:19.692Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iaptic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-16T21:41:08.000Z","updated_at":"2025-02-26T16:31:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"10b54b02-f4af-4d71-b600-ca655a1325ae","html_url":"https://github.com/iaptic/mcp-server-iaptic","commit_stats":null,"previous_names":["iaptic/mcp-server-iaptic"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaptic%2Fmcp-server-iaptic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaptic%2Fmcp-server-iaptic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaptic%2Fmcp-server-iaptic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaptic%2Fmcp-server-iaptic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iaptic","download_url":"https://codeload.github.com/iaptic/mcp-server-iaptic/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245026551,"owners_count":20549158,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-22T22:19:16.061Z","updated_at":"2026-01-11T23:55:09.533Z","avatar_url":"https://github.com/iaptic.png","language":"TypeScript","funding_links":[],"categories":["Business \u0026 Commerce MCP Servers","Legend","پیاده‌سازی‌های سرور","Customer Data Platforms","Cloud Services","MCP Servers","Table of Contents","Uncategorized","🌐 Web Development","Server Implementations"],"sub_categories":["👤 \u003ca name=\"customer-data-platforms\"\u003e\u003c/a\u003eCustomer Data Platforms","👤 \u003ca name=\"customer-data-platforms\"\u003e\u003c/a\u003eپلتفرم‌های داده مشتری","How to Submit","👤 Customer Data Platforms","Other Tools and Integrations","Uncategorized"],"readme":"# MCP Server for Iaptic\n[![smithery badge](https://smithery.ai/badge/mcp-server-iaptic)](https://smithery.ai/server/mcp-server-iaptic)\n\nA Model Context Protocol server for interacting with the [Iaptic API](https://www.iaptic.com). This server allows Claude or other AIs to interact with your Iaptic data to answer questions about your customers, purchases, transactions, and statistics.\n\n## Installation\n\n### Installing via Smithery\n\nTo install Iaptic for Claude Desktop automatically via [Smithery](https://smithery.ai/server/mcp-server-iaptic):\n\n```bash\nnpx -y @smithery/cli install mcp-server-iaptic --client claude\n```\n\n### Manual Installation\n```bash\n# Run directly with npx\nnpx mcp-server-iaptic --api-key YOUR_API_KEY --app-name YOUR_APP_NAME\n\n# Or install globally\nnpm install -g mcp-server-iaptic\nmcp-server-iaptic --api-key YOUR_API_KEY --app-name YOUR_APP_NAME\n```\n\n## Usage with Claude Desktop\n\nAdd to your Claude Desktop configuration file:\n\n```json\n{\n  \"iaptic\": {\n    \"command\": \"npx\",\n    \"args\": [\n      \"mcp-server-iaptic\",\n      \"--api-key\", \"your-api-key-here\",\n      \"--app-name\", \"your-app-name-here\"\n    ]\n  }\n}\n```\n\n## Available Tools\n\n### Customers\n- `customer_list`: List customers\n- `customer_get`: Get customer details by ID\n\n### Purchases\n- `purchase_list`: List purchases\n  - `limit`: Maximum number of purchases to return (default: 100, max: 1000)\n  - `offset`: Number of purchases to skip for pagination\n  - `startdate`: Filter purchases after this date (ISO format, e.g. 2024-01-01)\n  - `enddate`: Filter purchases before this date (ISO format, e.g. 2024-12-31)\n  - `customerId`: Filter by customer ID\n- `purchase_get`: Get purchase details by ID\n\n### Transactions\n- `transaction_list`: List transactions with pagination and date filtering\n  - `limit`: Maximum number of transactions to return (default: 100, max: 1000)\n  - `offset`: Number of transactions to skip for pagination\n  - `startdate`: Filter transactions after this date (ISO format, e.g. 2024-01-01)\n  - `enddate`: Filter transactions before this date (ISO format, e.g. 2024-12-31)\n  - `purchaseId`: Filter by purchase ID\n- `transaction_get`: Get transaction details by ID\n\n### Statistics\n- `stats_get`: Get general statistics about transactions and revenue\n- `stats_app`: Get app-specific statistics\n\n### Events\n- `event_list`: List recent events with pagination and date filtering\n  - `limit`: Maximum number of events to return (default: 100)\n  - `offset`: Number of events to skip for pagination\n  - `startdate`: Filter events after this date (ISO format, e.g. 2024-01-01)\n  - `enddate`: Filter events before this date (ISO format, e.g. 2024-12-31)\n\n### App Management\n- `iaptic_switch_app`: Switch to a different Iaptic app\n  - `appName`: Name of the app to switch to\n  - `apiKey`: API key for the app\n- `iaptic_reset_app`: Reset to the default Iaptic app\n- `iaptic_current_app`: Get information about the currently active app\n\n## Development\n\n```bash\n# Install dependencies\nnpm install\n\n# Run in development mode\nnpm run dev\n\n# Build for production\nnpm run build\n\n# Run production build\nnpm start\n```\n\n## Requirements\n\n- Node.js \u003e= 18\n- An Iaptic account with API credentials\n\n## License\n\nMIT \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiaptic%2Fmcp-server-iaptic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiaptic%2Fmcp-server-iaptic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiaptic%2Fmcp-server-iaptic/lists"}