transferBEP20Token
Transfer BEP-20 tokens on Binance Smart Chain by specifying symbol or address. Execute secure, structured transfers using the BSC MCP Server for efficient blockchain interactions.
Instructions
Transfer BEP-20 token by symbol or address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | ||
recipientAddress | Yes | ||
token | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"type": "string"
},
"recipientAddress": {
"type": "string"
},
"token": {
"type": "string"
}
},
"required": [
"recipientAddress",
"amount",
"token"
],
"type": "object"
}