nano_send
Transfer a specified amount of Nano cryptocurrency from a predefined account to a designated Nano address using the Nano Currency MCP Server tool.
Instructions
Send a specified amount of Nano currency from a predefined account to a destination Nano address.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of Nano to send (max 0.05 by default) | |
destination_address | Yes | Nano address to send the nano to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "Amount of Nano to send (max 0.05 by default)",
"type": "string"
},
"destination_address": {
"description": "Nano address to send the nano to",
"type": "string"
}
},
"required": [
"destination_address",
"amount"
],
"type": "object"
}