# io.github.codespar/mcp-unblockpay (npm · @codespar/mcp-unblockpay)

MCP server for UnblockPay — fiat-to-stablecoin onramp/offramp, wallets, transfers

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

## Components

- npm · `@codespar/mcp-unblockpay`: 68/100 (this document), [markdown](https://verifymcp.io/servers/codespar-mcp-unblockpay/codespar-mcp-unblockpay.md), [page](https://verifymcp.io/servers/codespar-mcp-unblockpay/codespar-mcp-unblockpay)

## Channel facts

- Registry: `npm`
- Package: `@codespar/mcp-unblockpay`
- Version: `0.3.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-06.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Known CVEs were checked across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Dependency health was assessed across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 44 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1225 tokens (~94/item across 13 items; 13 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 37/100
  - Stability observed for 11 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 82/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 45% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add codespar-mcp-unblockpay -- npx -y @codespar/mcp-unblockpay
```

### Codex

```bash
codex mcp add codespar-mcp-unblockpay -- npx -y @codespar/mcp-unblockpay
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add codespar-mcp-unblockpay --command npx --arg -y --arg @codespar/mcp-unblockpay
```

### Hermes

```yaml
mcp_servers:
  codespar-mcp-unblockpay:
    command: "npx"
    args: ["-y", "@codespar/mcp-unblockpay"]
```

### Other

```json
{
  "mcpServers": {
    "codespar-mcp-unblockpay": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-unblockpay"
      ]
    }
  }
}
```

## 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-06 (score 68, +1)

No change was recorded against any check on this day. Stability & Change Management went from 33 to 37. That category is still filling its 30-day observation window: 10 days of observed history at the previous scan, 11 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-05 (score 67, +1)

- [security improvement] CVE-2026-69207 no longer affects this package
- [security improvement] Known CVEs: fail → partial

### 2026-08-04 (score 66, 0)

- [security regression] CVE-2026-69207 affects this package: medium
- [security regression] Known CVEs: partial → fail

### 2026-08-03 (score 66, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 62, +43)

- [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 regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-07-31 (score 19, −7)

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

### 2026-07-30 (score 26, −18)

- [security regression] Malware scan: pass → unverified

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

First indexed and scored.

## MCP tools (13)

### `create_customer` (~243 tokens)

Create an individual or business customer (KYC mother). Business customers require date_of_incorporation; both types use 3-letter ISO country codes (BRA/USA/MEX). Returns { id, status: 'pending', verification: { verification_link } }.

Input parameters:

- `address` (object)
- `business_legal_name` (string): Required when type=business
- `country` (string, required): 3-letter ISO 3166-1 alpha-3 country code (BRA, USA, MEX)
- `date_of_birth` (string): ISO date (YYYY-MM-DD). Required when type=individual
- `date_of_incorporation` (string): ISO date (YYYY-MM-DD). REQUIRED when type=business
- `email` (string)
- `first_name` (string): Required when type=individual
- `last_name` (string): Required when type=individual
- `phone_number` (string): E.164 format, e.g. +5511999999999
- `tax_id` (string): CNPJ for BRA business, EIN for USA, RFC for MEX, etc.
- `type` (string, required): Customer type

### `list_customers` (~53 tokens)

List customers under the operator's API key. `limit` is mandatory per UnblockPay's pagination contract.

Input parameters:

- `limit` (number, required): Required by the API (1-100)
- `offset` (number)

### `verify_customer` (~66 tokens)

Trigger the KYC verification check for a customer. Sandbox auto-progresses business customers through the hosted KYC flow once documents are uploaded. Idempotent — returns 422 'customer_cannot_be_verified' when already approved (safe to ignore).

Input parameters:

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

### `get_verification_details` (~59 tokens)

Poll the KYC verification state for a customer. Returns { customer_status: 'pending' | 'approved' | 'rejected' | 'partially_rejected', verification_steps: [...] }.

Input parameters:

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

### `create_wallet` (~103 tokens)

Create a stablecoin wallet under an APPROVED customer. blockchain selects the network (solana → USDC; ethereum/polygon → USDC/USDT; tron → USDT). Customer must be 'approved' before this succeeds (422 customer_not_allowed otherwise).

Input parameters:

- `blockchain` (string, required)
- `customer_id` (string, required)
- `is_external_wallet` (boolean): False for UnblockPay-managed wallets
- `name` (string, required): Human-readable wallet name

### `list_wallets` (~32 tokens)

List wallets under the operator's API key.

Input parameters:

- `limit` (number)
- `offset` (number)

### `create_external_account` (~95 tokens)

Register a fiat receiver account (BRL Pix, USD wire, EUR SEPA, MXN SPEI). Skippable for BRL Pix payouts — pass pix_key + document directly on /payout instead.

Input parameters:

- `currency` (string, required): BRL / USD / MXN / EUR
- `customer_id` (string, required)
- `payment_rail` (string, required): pix / us_wire / spei / sepa

### `list_external_accounts` (~33 tokens)

List external accounts under the operator's API key.

Input parameters:

- `limit` (number)
- `offset` (number)

### `create_quote` (~93 tokens)

Lock an FX + fee quote for a 5-minute TTL. Same endpoint for both on_ramp (fiat → stablecoin) and off_ramp (stablecoin → fiat). Pass amount on EITHER sender or receiver, not both. Response carries { id, expires_at, commercial_quotation, fees }.

Input parameters:

- `receiver` (object, required)
- `sender` (object, required)
- `type` (string, required)

### `create_payin` (~100 tokens)

Create a fiat → stablecoin pay-in referencing a quote_id. Sandbox min: 150 BRL / payout-side equivalents. Response carries { id, status: 'awaiting_deposit', sender_deposit_instructions: { deposit_address: '<Pix Copy & Paste EMV>' }, transaction_link }.

Input parameters:

- `customer_id` (string, required)
- `quote_id` (string, required)
- `receiver` (object, required)
- `sender` (object, required)

### `create_payout` (~151 tokens)

Create a stablecoin → fiat payout referencing a quote_id. customer_id is REQUIRED at the top level (404 'Customer not found' otherwise). Pix-BR shortcut: pass receiver.pix_key + receiver.document directly to skip external_account registration. Sandbox min: 25 USDC. Response carries { id, status: 'awaiting_deposit', transaction_link, sender_deposit_instructions: { deposit_address: '<blockchain address>' } }.

Input parameters:

- `customer_id` (string, required)
- `quote_id` (string, required)
- `receiver` (object, required): EITHER { pix_key, document } for BRL Pix shortcut OR { external_account_id } for other currencies
- `sender` (object, required)

### `get_transaction` (~69 tokens)

Poll transaction status. Lifecycle: awaiting_deposit → processing → completed (or failed / refunded / cancelled / error). Sandbox does NOT auto-progress without a webhook simulation — see UnblockPay's /concepts/transactions docs for the mocked transaction IDs available for status testing.

Input parameters:

- `id` (string, required)

### `cancel_transaction` (~61 tokens)

Cancel a transaction. Only valid while status is 'awaiting_deposit' — UnblockPay's API returns 422 once the deposit has been received.

Input parameters:

- `id` (string, required)
- `status` (string, required): Set to 'cancelled' to abort

## Diagnostics

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

## Score history

- 2026-08-06: 68
- 2026-08-05: 67
- 2026-08-04: 66
- 2026-08-03: 66
- 2026-08-02: 62
- 2026-08-01: 19
- 2026-07-31: 19
- 2026-07-30: 26
- 2026-07-28: 44
- 2026-07-27: 44

## Links

- npm package: https://www.npmjs.com/package/@codespar/mcp-unblockpay
- Socket report: https://socket.dev/npm/package/@codespar/mcp-unblockpay
- Repository: https://github.com/codespar/mcp-dev-latam
- Changelog RSS feed: https://verifymcp.io/servers/codespar-mcp-unblockpay/codespar-mcp-unblockpay.xml
- Changelog JSON feed: https://verifymcp.io/servers/codespar-mcp-unblockpay/codespar-mcp-unblockpay.json
- HTML version of this page: https://verifymcp.io/servers/codespar-mcp-unblockpay/codespar-mcp-unblockpay
