MantraChain MCP Server

by allthatjazzleo
Verified

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

NameRequiredDescriptionDefault
coinsYesArray of coins to send, each with denom and amount
memoNoOptional memo for the transaction
networkNameYesName 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
recipientAddressYesAddress 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" }
ID: p4x6v48lbj