bank-send
Transfer multiple tokens to a recipient address in a single transaction using MantraChain MCP Server. Specify coins, recipient, and network for efficient token management.
Instructions
Send tokens to another address. Supports sending multiple coins in one transaction.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| coins | Yes | Array of coins to send, each with denom and amount | |
| memo | No | Optional memo for the transaction | |
| networkName | Yes | Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments | |
| recipientAddress | Yes | Address of the recipient |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"coins": {
"anyOf": [
{
"items": {
"additionalProperties": false,
"properties": {
"amount": {
"type": "string"
},
"denom": {
"type": "string"
}
},
"required": [
"amount"
],
"type": "object"
},
"type": "array"
},
{
"additionalProperties": false,
"properties": {
"amount": {
"type": "string"
},
"denom": {
"type": "string"
}
},
"required": [
"amount"
],
"type": "object"
}
],
"description": "Array of coins to send, each with denom and amount"
},
"memo": {
"description": "Optional memo for the transaction",
"type": "string"
},
"networkName": {
"description": "Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments",
"type": "string"
},
"recipientAddress": {
"description": "Address of the recipient",
"type": "string"
}
},
"required": [
"recipientAddress",
"coins",
"networkName"
],
"type": "object"
}