Sign In

@codespar/mcp-unblockpay

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codespar/mcp-unblockpay

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

npmnpm
Version
0.1.0
Version published
Weekly downloads
40
2.56%
Maintainers
1
Weekly downloads
 
Created
Source

@codespar/mcp-unblockpay

MCP server for UnblockPay — fiat-to-stablecoin onramp/offramp and wallet management

npm License: MIT

Quick Start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "unblockpay": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-unblockpay"],
      "env": {
        "UNBLOCKPAY_API_KEY": "your-key"
      }
    }
  }
}

Claude Code

claude mcp add unblockpay -- npx @codespar/mcp-unblockpay

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "unblockpay": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-unblockpay"],
      "env": {
        "UNBLOCKPAY_API_KEY": "your-key"
      }
    }
  }
}

Tools

ToolDescription
create_walletCreate a new wallet in UnblockPay
get_walletGet wallet details by ID
list_walletsList all wallets
create_onrampCreate a fiat-to-stablecoin onramp transaction
create_offrampCreate a stablecoin-to-fiat offramp transaction
get_transactionGet transaction details by ID
list_transactionsList transactions with optional filters
get_exchange_rateGet current exchange rate for a currency pair
create_transferCreate a stablecoin transfer between wallets
get_balanceGet wallet balance

Authentication

UnblockPay uses a Bearer API key for authentication.

Sandbox / Testing

UnblockPay provides a sandbox via the developer portal.

Get your credentials

  • Go to UnblockPay Documentation
  • Create a developer account
  • Generate an API key
  • Set the UNBLOCKPAY_API_KEY environment variable

Environment Variables

VariableRequiredDescription
UNBLOCKPAY_API_KEYYesAPI key from UnblockPay

Roadmap

v0.2 (planned)

  • create_payment_link — Create a payment link
  • get_payment_link — Get payment link details
  • list_payment_links — List all payment links
  • create_batch_transfer — Create a batch crypto transfer
  • get_supported_currencies — List supported cryptocurrencies

v0.3 (planned)

  • multi_currency_wallet — Multi-currency wallet management
  • compliance_reports — Generate compliance/AML reports

Want to contribute? Open a PR or request a tool.

License

MIT

Keywords

mcp

FAQs

Package last updated on 01 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts