Skip to main content
Glama

Send Crypto (EVM)

monei_send_crypto_evm
Destructive

Send cryptocurrency from a Monei EVM wallet to any external address. Supports native tokens (ETH, BNB, MATIC) and ERC-20 tokens (USDT, USDC) with automatic routing based on token address.

Instructions

Sends cryptocurrency from the user's Monei EVM wallet to an external wallet address.

Handles both native tokens (ETH, BNB, MATIC) and ERC-20 tokens (USDT, USDC) with a single tool. Routing is automatic: if tokenAddress is provided it sends the ERC-20, otherwise it sends the native token.

Before calling:

  1. Confirm sufficient balance using monei_get_evm_portfolio for the relevant chain

  2. Ask for the user's transaction PIN if not already provided — never store or log it

  3. Show the recipient address and amount to the user and get explicit confirmation before sending

Args:

  • to (string): Recipient EVM wallet address (0x...)

  • amount (string): Amount to send as a string to avoid floating point errors

  • chainId (number): Chain to send on (56=BSC, 137=Polygon, 8453=Base, 1=Ethereum, etc.)

  • tokenAddress (string, optional): ERC-20 contract address — omit for native tokens (ETH/BNB/MATIC)

  • transactionPin (string): User's 4-6 digit PIN — ask at runtime, never store

Returns: { "txHash": string, // Transaction hash to track on the block explorer "amount": string, "to": string, "chainId": number }

Examples:

  • "Send 0.01 ETH to 0x742d..." -> chainId: 1, amount: "0.01", no tokenAddress

  • "Send 100 USDT on BSC to 0x..." -> chainId: 56, amount: "100", tokenAddress: USDT contract on BSC

  • "Send 50 MATIC to 0x..." -> chainId: 137, amount: "50", no tokenAddress

Security: Never log or store the transactionPin.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYesRecipient EVM wallet address
amountYesAmount to send as a string (e.g. '0.01' for 0.01 ETH, '100' for 100 USDT)
chainIdYesChain to send on. 56=BSC, 137=Polygon, 8453=Base, 1=Ethereum, 42161=Arbitrum, 10=Optimism
tokenAddressNoERC-20 token contract address. Omit this for native tokens (ETH, BNB, MATIC). Include it for ERC-20 tokens like USDT, USDC.
transactionPinYesUser's 4-6 digit transaction PIN. Ask for this at runtime — never store or log it.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.3.1

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate destructive, non-read-only behavior; the description adds meaningful operational context: automatic native-vs-ERC20 routing, the requirement for a runtime PIN that must never be stored or logged, and the need for user confirmation before sending. It also discloses the return shape including txHash, which is important since no output schema is present.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is organized with a clear main statement, a routing rule, numbered pre-call steps, labeled Args, a Returns block, and examples. It is detailed but every section contributes actionable information; nothing is redundant or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a financial transfer tool with destructive behavior and no output schema, the description covers everything an agent needs: prerequisites, PIN handling, user confirmation, routing rules, parameter semantics, return values, examples, and security guidance. The sibling context is complex, but the description fully positions this EVM send operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema coverage is 100%, giving a strong baseline. The description adds value beyond the schema by explaining the reason for using a string amount ('to avoid floating point errors'), clarifying when to include or omit tokenAddress, and providing concrete chainId examples for ETH, BSC, and MATIC.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Sends cryptocurrency from the user's Monei EVM wallet to an external wallet address.' It further distinguishes the tool's scope by explaining it handles both native tokens and ERC-20s, and the EVM qualifier separates it from the Solana sibling tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear operational guidance: check balance with monei_get_evm_portfolio, ask for the transaction PIN at runtime, and obtain explicit user confirmation before sending. It does not explicitly state when not to use this tool versus alternatives like send_crypto_solana or swap_tokens_evm, so it falls just short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Mr-Money01/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server