createBEP20Token
Launch custom BEP-20 tokens on Binance Smart Chain using BSC MCP Server. Define token name, symbol, and total supply to execute secure and structured token creation.
Instructions
create bep20 token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
symbol | Yes | ||
totalSupply | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"symbol": {
"type": "string"
},
"totalSupply": {
"type": "string"
}
},
"required": [
"name",
"symbol",
"totalSupply"
],
"type": "object"
}