MoonPay Integration

OWL is a partner extension for MoonPay's Open Wallet Standard. It follows the same pattern as Messari, Polymarket, and Myriad in the MoonPay skills ecosystem.

How It Works

OWL wraps the MoonPay CLI (@moonpay/cli) and extends it. When you run owl mcp, it spawns mp mcp as a child process and acts as a single gateway for AI agents.

Agent --MCP--> owl mcp --MCP--> mp mcp --> Blockchains # owl mcp = all MoonPay tools + 22 owl_* tools

MCP Client Configuration

Add OWL to your AI agent's MCP config. This replaces mp mcp since OWL proxies all MoonPay tools.

// mcp config (claude_desktop_config.json or similar) { "mcpServers": { "owl": { "command": "npx", "args": ["moonpay-owl", "mcp"] } } }

MoonPay Prerequisites

Before using OWL, you need a MoonPay account and wallet.

# install MoonPay CLI npm install -g @moonpay/cli # authenticate mp login --email you@example.com mp verify --email you@example.com --code 123456 # create a wallet mp wallet create --name main # verify everything works mp wallet balance --wallet main

Skills Format

OWL publishes six skills to the MoonPay Skills repo following the SKILL.md format.

SkillDescription
owl-terminalTUI dashboard with portfolio, activity feed, and agent integration
owl-tunnelMulti-agent wallet sharing with policy-based access control
owl-alertsCross-device price monitoring with Telegram and webhook support
owl-ledgerSQLite audit trail of every agent tool call with query, stats, and export
owl-reportsSpending reports, portfolio snapshots, and multi-wallet aggregation
owl-dryrunTransaction simulation (swap, transfer, bridge) without broadcasting

Ecosystem

MoonPay Skills Repo moonpay-auth moonpay-swap-tokens moonpay-deposit moonpay-trading-auto messari-x402 myriad-prediction owl-terminal owl-tunnel owl-alerts owl-ledger owl-reports owl-dryrun CLIs mp (MoonPay) owl (this project) pc (Polymarket) messari-cli MCP Servers mp mcp --> owl mcp (wraps mp mcp)

Supported Chains

OWL inherits all chain support from MoonPay CLI:

SolanaEthereumBasePolygonArbitrumOptimismBNB ChainAvalancheBitcoinTRON

Resources