send-mon-transaction
Initiate MON token transfers on the Monad testnet by specifying recipient addresses and transaction amounts using this MCP server tool.
Instructions
Send MON transaction on Monad testnet
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | Amount of MON to send | |
| to | Yes | Recipient address |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "Amount of MON to send",
"type": "string"
},
"to": {
"description": "Recipient address",
"type": "string"
}
},
"required": [
"to",
"amount"
],
"type": "object"
}