# io.github.jams24/inventpay-mcp (npm · inventpay-mcp)

Manage crypto payments, stores, digital products, and orders via InventPay

- Trust score: 60/100 (medium)
- Change this week: +42
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `inventpay-mcp`: 60/100 (this document), [markdown](https://verifymcp.io/servers/jams24-inventpay-mcp/inventpay-mcp.md), [page](https://verifymcp.io/servers/jams24-inventpay-mcp/inventpay-mcp)

## Channel facts

- Registry: `npm`
- Package: `inventpay-mcp`
- Version: `1.0.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 134 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1343 tokens (~79/item across 17 items; 17 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add jams24-inventpay-mcp -- npx -y inventpay-mcp
```

### Codex

```bash
codex mcp add jams24-inventpay-mcp -- npx -y inventpay-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "jams24-inventpay-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "inventpay-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add jams24-inventpay-mcp --command npx --arg -y --arg inventpay-mcp
```

### Hermes

```yaml
mcp_servers:
  jams24-inventpay-mcp:
    command: "npx"
    args: ["-y", "inventpay-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "jams24-inventpay-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "inventpay-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 60, +44)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional] Licence: MIT

### 2026-08-01 (score 16, −6)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 22, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-28 (score 40, +22)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100

### 2026-07-27 (score 18)

First indexed and scored.

## MCP tools (17)

### `create_payment` (~130 tokens)

Create a crypto payment. Returns a unique wallet address, QR code, and invoice URL for the customer to pay.

Input parameters:

- `amount` (number, required): Payment amount
- `amountCurrency` (string): Currency the amount is denominated in
- `callbackUrl` (string): Webhook URL for payment status notifications
- `currency` (string, required): Cryptocurrency the customer will pay with
- `description` (string): Payment description shown to the customer
- `expirationMinutes` (number): Payment expiration in minutes (5-1440, default 30)
- `orderId` (string): Your internal order/reference ID

### `create_invoice` (~112 tokens)

Create a multi-currency invoice. The customer can choose which cryptocurrency to pay with. Returns an invoice URL.

Input parameters:

- `amount` (number, required): Invoice amount
- `amountCurrency` (string): Currency the amount is denominated in
- `callbackUrl` (string): Webhook URL for payment status notifications
- `description` (string): Invoice description
- `expirationMinutes` (number): Invoice expiration in minutes (5-1440, default 60)
- `orderId` (string): Your internal order/reference ID

### `get_payment_status` (~43 tokens)

Check the current status of a payment or invoice. Returns status, amount, confirmations, and transaction details.

Input parameters:

- `paymentId` (string, required): The payment or invoice ID

### `get_balances` (~33 tokens)

Get all cryptocurrency balances for your merchant account. Shows available, pending, total earned, and total withdrawn for each currency.

### `create_withdrawal` (~79 tokens)

Create a withdrawal request to send funds to an external wallet address. Requires 2FA if enabled on the account.

Input parameters:

- `amount` (number, required): Amount to withdraw
- `currency` (string, required): Cryptocurrency to withdraw
- `description` (string): Withdrawal description/memo
- `destinationAddress` (string, required): External wallet address to send funds to

### `get_withdrawal` (~41 tokens)

Check the status of a withdrawal request. Returns status, amount, transaction hash, and processing details.

Input parameters:

- `withdrawalId` (string, required): The withdrawal ID

### `create_store` (~109 tokens)

Create a new merchant storefront. Each merchant gets one store with a unique URL slug. Customers can browse and purchase digital products with crypto.

Input parameters:

- `banner` (string): HTTPS URL for the store banner image
- `description` (string): Store description (max 1000 characters)
- `logo` (string): HTTPS URL for the store logo
- `name` (string, required): Store name (2-100 characters). A URL slug will be auto-generated.
- `settings` (object): Custom store settings

### `get_store` (~26 tokens)

Get your store details including name, slug, URL, product count, and order count.

### `update_store` (~104 tokens)

Update your store details. Only provided fields are changed.

Input parameters:

- `banner` (string): HTTPS URL for the store banner image
- `description` (string): Store description (max 1000 characters)
- `isActive` (boolean): Toggle store visibility (true = live, false = hidden)
- `logo` (string): HTTPS URL for the store logo
- `name` (string): Store name (2-100 characters)
- `settings` (object): Custom store settings

### `create_product` (~166 tokens)

Add a digital product to your store. Products are priced in USDT and auto-converted to crypto at checkout. Attach digitalContent for automatic delivery after payment.

Input parameters:

- `description` (string): Product description (max 5000 characters)
- `digitalContent` (object): Digital delivery content — auto-delivered after payment
- `images` (array): Array of HTTPS image URLs (max 10)
- `metadata` (object): Custom key-value metadata
- `name` (string, required): Product name (1-200 characters)
- `price` (number, required): Price in USDT (0.01 - 1,000,000)
- `stock` (number): Available quantity. Omit for unlimited stock.
- `variants` (array): Variant options (e.g., size, tier)

### `list_products` (~63 tokens)

List all products in your store with optional search and pagination.

Input parameters:

- `limit` (number): Items per page, 1-50 (default 20)
- `page` (number): Page number (default 1)
- `search` (string): Search products by name

### `update_product` (~174 tokens)

Update a product in your store. Only provided fields are changed. Updating the name regenerates the slug.

Input parameters:

- `description` (string): Product description (max 5000 characters)
- `digitalContent` (object): Digital delivery content — auto-delivered after payment
- `id` (string, required): Product ID
- `images` (array): Array of HTTPS image URLs (max 10)
- `isActive` (boolean): Toggle product visibility
- `metadata` (object): Custom key-value metadata
- `name` (string): Product name (1-200 characters)
- `price` (number): Price in USDT (0.01 - 1,000,000)
- `sortOrder` (number): Display order (0-9999)
- `stock` (number): Available quantity (0-999,999)

### `delete_product` (~41 tokens)

Deactivate a product from your store. Products with existing orders are soft-deleted (hidden, not removed).

Input parameters:

- `id` (string, required): Product ID to deactivate

### `list_orders` (~64 tokens)

List all orders for your store with optional status filter and pagination.

Input parameters:

- `limit` (number): Items per page, 1-50 (default 20)
- `page` (number): Page number (default 1)
- `status` (string): Filter by order status

### `get_order` (~36 tokens)

Get full details of a specific order including items, payment status, customer info, and timestamps.

Input parameters:

- `id` (string, required): Order ID

### `update_order_status` (~92 tokens)

Update the fulfillment status of an order. Valid transitions: PAID→PROCESSING, PROCESSING→SHIPPED/COMPLETED, SHIPPED→COMPLETED, COMPLETED→REFUNDED. Digital orders auto-transition to COMPLETED.

Input parameters:

- `id` (string, required): Order ID
- `notes` (string): Optional notes about this status change
- `status` (string, required): New order status

### `get_store_analytics` (~30 tokens)

Get store analytics: total orders, revenue breakdown by status, product count, and recent order activity.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/jams24-inventpay-mcp/inventpay-mcp#diagnostics

## Score history

- 2026-08-03: 60
- 2026-08-02: 60
- 2026-08-01: 16
- 2026-07-31: 22
- 2026-07-30: 40
- 2026-07-28: 40
- 2026-07-27: 18

## Links

- npm package: https://www.npmjs.com/package/inventpay-mcp
- Socket report: https://socket.dev/npm/package/inventpay-mcp
- Changelog RSS feed: https://verifymcp.io/servers/jams24-inventpay-mcp/inventpay-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/jams24-inventpay-mcp/inventpay-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/jams24-inventpay-mcp/inventpay-mcp
