Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

io.github.codespar/mcp-unblockpay

NPM · @CODESPAR/MCP-UNBLOCKPAY · SCANNED AUG 6

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

+42 this week 68 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security86
  • No malware found by supply-chain analysis.Pass
  • Known CVEs were checked across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Dependency health was assessed across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability71
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 1225 tokens (~94/item across 13 items; 13 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management37
  • Stability observed for 11 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage82
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 45% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @codespar/mcp-unblockpay

# add to Claude Code
claude mcp add codespar-mcp-unblockpay -- npx -y @codespar/mcp-unblockpay
# add to Codex CLI
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
    }
  }
}
# add to OpenClaw
openclaw mcp add codespar-mcp-unblockpay --command npx --arg -y --arg @codespar/mcp-unblockpay
# ~/.hermes/config.yaml
mcp_servers:
  codespar-mcp-unblockpay:
    command: "npx"
    args: ["-y", "@codespar/mcp-unblockpay"]
// mcp.json
{
  "mcpServers": {
    "codespar-mcp-unblockpay": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-unblockpay"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 6 Aug 26 +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.

  • 5 Aug 26 +1
    • CVE-2026-69207 no longer affects this package security
    • Known CVEs: fail → partial security
  • 4 Aug 26 0
    • CVE-2026-69207 affects this package: medium security
    • Known CVEs: partial → fail security
  • 3 Aug 26 +4
    • Stability: unverified → 0.27 functional
  • 2 Aug 26 +43
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Tool coverage: 100 → unverified functional
    • Schema quality: unverified → good functional
    • Dependency health: unverified → partial functional
    • License: unverified → pass functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • First check of Schema quality: unverified functional
    • Licence: MIT functional
  • 31 Jul 26 −7
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 44

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 6 Aug 2026 · Analysed npm/@codespar/[email protected]

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 94 packages
Packages resolved 94
Deprecated 94
Stale 29
Tree resolution Partial

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 13 exposed · ~1,158 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
cancel_transaction ~61

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

NameTypeReqDescription
idstringyes
statusstringyesSet to 'cancelled' to abort

No output schema declared.

No examples provided.

create_customer ~243

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 } }.

NameTypeReqDescription
addressobject
business_legal_namestringRequired when type=business
countrystringyes3-letter ISO 3166-1 alpha-3 country code (BRA, USA, MEX)
date_of_birthstringISO date (YYYY-MM-DD). Required when type=individual
date_of_incorporationstringISO date (YYYY-MM-DD). REQUIRED when type=business
emailstring
first_namestringRequired when type=individual
last_namestringRequired when type=individual
phone_numberstringE.164 format, e.g. +5511999999999
tax_idstringCNPJ for BRA business, EIN for USA, RFC for MEX, etc.
typestringyesCustomer type

No output schema declared.

No examples provided.

create_external_account ~95

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.

NameTypeReqDescription
currencystringyesBRL / USD / MXN / EUR
customer_idstringyes
payment_railstringyespix / us_wire / spei / sepa

No output schema declared.

No examples provided.

create_payin ~100

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 }.

NameTypeReqDescription
customer_idstringyes
quote_idstringyes
receiverobjectyes
senderobjectyes

No output schema declared.

No examples provided.

create_payout ~151

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>' } }.

NameTypeReqDescription
customer_idstringyes
quote_idstringyes
receiverobjectyesEITHER { pix_key, document } for BRL Pix shortcut OR { external_account_id } for other currencies
senderobjectyes

No output schema declared.

No examples provided.

create_quote ~93

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 }.

NameTypeReqDescription
receiverobjectyes
senderobjectyes
typestringyes

No output schema declared.

No examples provided.

create_wallet ~103

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).

NameTypeReqDescription
blockchainstringyes
customer_idstringyes
is_external_walletbooleanFalse for UnblockPay-managed wallets
namestringyesHuman-readable wallet name

No output schema declared.

No examples provided.

get_transaction ~69

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.

NameTypeReqDescription
idstringyes

No output schema declared.

No examples provided.

get_verification_details ~59

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

NameTypeReqDescription
idstringyesCustomer ID

No output schema declared.

No examples provided.

list_customers ~53

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

NameTypeReqDescription
limitnumberyesRequired by the API (1-100)
offsetnumber

No output schema declared.

No examples provided.

list_external_accounts ~33

List external accounts under the operator's API key.

NameTypeReqDescription
limitnumber
offsetnumber

No output schema declared.

No examples provided.

list_wallets ~32

List wallets under the operator's API key.

NameTypeReqDescription
limitnumber
offsetnumber

No output schema declared.

No examples provided.

verify_customer ~66

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).

NameTypeReqDescription
idstringyesCustomer ID

No output schema declared.

No examples provided.