create_token
Generate a new Solana token by specifying name, symbol, supply, and decimals. Designed for HR teams using Crossmint HR Airdrop MCP to facilitate role-based token distribution and email notifications.
Instructions
Create a new Solana token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
decimals | No | Token decimals (default: 9) | |
name | Yes | Token name | |
supply | Yes | Total token supply | |
symbol | Yes | Token symbol |
Input Schema (JSON Schema)
{
"properties": {
"decimals": {
"description": "Token decimals (default: 9)",
"type": "number"
},
"name": {
"description": "Token name",
"type": "string"
},
"supply": {
"description": "Total token supply",
"type": "number"
},
"symbol": {
"description": "Token symbol",
"type": "string"
}
},
"required": [
"name",
"symbol",
"supply"
],
"type": "object"
}