Monad blockchain gateway for AI agents: balances, transfers, swaps, DeFi, with Privy signing.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
MCP server for the Monad blockchain. Your agent's gateway to balances, transfers, swaps, and DeFi on Monad β with signing handled by a Privy embedded wallet, never by the agent.
Built around a simple shape β stored requests + approval URLs + skill plugins β on Monad mainnet 143 / testnet 10143, with Privy as the wallet provider.
π Landing page + live read-only demo: pareen.github.io/monad-mcp β query real Monad balances in your browser, exactly what the agent sees.
π Connect it β no install, no terminal. In Claude Desktop or ChatGPT, add a custom connector and paste this URL:
That's the whole setup β read tools (balances, prices, portfolios, token checks) work immediately. Step-by-step for each app: docs/connect-claude.md.
Prefer the terminal? One line in Claude Code:
The hosted endpoint runs in split mode: read tools are public (paste the URL,
no login β safe to share) and write tools are gated behind a Privy sign-in,
returning auth_required until you authenticate. The hosted sign-in path is wired
but still being verified end-to-end, so the tested route for transactions is your
own Privy-signed instance β see docs/connect-claude.md, docs/FAQ.md for common security/setup questions, and docs/DEPLOY.md.
π§ Monad β Ethereum: the server ships agent-facing guidance on Monad's quirks (128 KB contracts, gas_limit billing, speculative latest, eth_getLogs caps, FastLane/MEV) as monad://guide/* MCP resources β see docs/building-on-monad.md.
Core tools (work on any address; auth required only where noted):
| Tool | Auth | What it does |
|---|---|---|
create_user | none | Provision a Privy user + Monad-ready embedded wallet. Self-serve onboarding. |
whoami | required | User id, wallet address, and active session-key grants. |
get_address | required | Returns the connected wallet's address. |
get_balance | optional | Native MON balance. Accepts a 0x address or a .nad name. |
get_token_balance | optional | ERC-20 balance with decimals + symbol. Accepts a .nad name. |
get_portfolio | optional | All canonical token balances Γ USD prices via DexScreener. Accepts a .nad name. |
get_transaction_history | optional | Recent ERC-20 transfers via RPC log scan + explorer URL. Accepts a .nad name. |
get_tx_receipt | none | Receipt for a tx hash. |
simulate_transaction | optional | Dry-run a call (eth_call), returns return data or revert reason. |
check_token | none | Risk heuristics: canonical-list membership, bytecode, DEX liquidity, pair age. |
resolve_token | none | Symbol/name/alias β token address (canonical list + DexScreener fallback). |
get_token_price | none | USD price from the deepest-liquidity DexScreener pair on Monad. |
list_canonical_tokens | none | Built-in list of well-known Monad tokens. |
resolve_name | none | Nad Name Service (nad.domains): .nad name β address, and address β primary .nad name. |
read_contract | none | Call any view/pure function on any Monad contract (ABI provided inline). |
decode_return_data | none | Decode hex return data against an ABI. |
bridge_quote | optional | LiFi aggregator quote from any chain into Monad. |
poll_request | none | Status of a pending approval request. |
transfer | required | Native MON or ERC-20 transfer. Recipient may be a 0x address or a .nad name. Auto-executes under a session grant, else β approval URL. |
write_contract | required | Send a tx to any contract (any non-view function). |
pay_for_service | required | x402 (HTTP 402) β signs an EIP-3009 USDC authorization via Privy and retries with X-PAYMENT. |
bridge_execute | required | Submit the source-chain tx returned by bridge_quote (Monad sources only). |
grant_session_key | required | Authorize the agent to spend up to N MON without per-tx approvals. |
list_session_keys | required | Show active + recent grants. |
revoke_session_key | required | Cancel a grant immediately. |
Skill plugins (additive, drop in your own under src/plugins/):
uniswap_quote, uniswap_swap, approve_erc20) β exact-input single-hop swaps on Uniswap v3 (testnet + mainnet).kintsu_stake, kintsu_request_unstake, kintsu_claim_unstake, kintsu_position) β liquid staking MON β sMON via Kintsu's ERC-7535 vault. Two-step unstake with batch processing.fastlane_stake, fastlane_unstake, fastlane_position) β liquid staking MON β shMON via FastLane's shMONAD ERC-4626 vault. Payable native deposit, synchronous redeem (no epoch wait); shMON keeps earning staking + MEV rewards.morpho_supply, morpho_withdraw, morpho_borrow, morpho_repay, morpho_position, morpho_market) β lending on Morpho Blue's singleton. Caller passes MarketParams inline; plugin derives the market id.kuru_best_bid_ask, kuru_market_params, kuru_place_limit, kuru_cancel_orders, kuru_market_swap) β fully-on-chain CLOB. Ships with known mainnet markets (MON/USDC, MON/AUSD, WETH/USDC); accepts raw addresses for new ones.All write tools across plugins auto-route through a covering session-key grant (see "Session keys" below); otherwise they return an approval URL.
Mainnet-only plugins (Kintsu / FastLane / Morpho / Kuru) are skipped at boot when MONAD_DEFAULT_NETWORK=testnet. Override per-tool with network: "mainnet".
Edit .env. Minimum config to do anything useful with write tools:
For the Uniswap plugin, supply contract addresses (verify against the canonical Uniswap deployment for Monad before using):
In the Privy dashboard:
143) and/or testnet (chainId 10143) as an EVM chain..env.PRIVY_VERIFICATION_KEY for fastest token verification. If omitted, the server falls back to JWKS over the network.Privy embedded wallets are user-owned by default β the server cannot sign for them. The MCP server needs a P-256 key quorum registered with Privy, attached as an additional_signer on every wallet it provisions. Bootstrap it:
After bootstrap, every create_user call attaches the quorum at wallet creation, and every transfer/swap includes the private key in authorization_context. Important: wallets minted before you set these env vars are stranded β Privy doesn't let you retrofit an additional_signer (updating authorization requires existing authorization). Always bootstrap first.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json. The --env-file flag loads PRIVY_*, MONAD_*, and PUBLIC_BASE_URL from your .env into the spawned process:
You'll also need the HTTP server running (npm run start:http) for the approval flow β the stdio MCP returns approval URLs that point at the HTTP server. See docs/claude-desktop.md for the full dogfood walkthrough (bootstrap, funding, first transfer).
Public reads, no self-hosting: to use the read tools (balances, portfolio, history) without building anything, point Claude Desktop at the hosted endpoint via the
mcp-remoteshim β"args": ["-y", "mcp-remote", "https://monad-mcp.fly.dev/mcp"]. Writes (transfers/swaps) are gated behind a Privy sign-in; the verified path for them is a self-hosted signer.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/monad-mcp)<a href="https://allmcps.com/mcp/monad-mcp"><img src="https://allmcps.com/api/badge/monad-mcp?style=directory" alt="Monad MCP on AllMCPs" /></a>