calculate_amounts
Calculate token amounts for employees based on uniform distribution or role-specific allocations using roleAmounts or uniformAmount inputs in the Crossmint HR Airdrop MCP server.
Instructions
Calculate token amounts for each employee
Input Schema
Name | Required | Description | Default |
---|---|---|---|
roleAmounts | No | Token amounts by role (if CSV with roles is used) | |
uniformAmount | No | Uniform amount for all employees (if no CSV role-mapping is used) |
Input Schema (JSON Schema)
{
"properties": {
"roleAmounts": {
"description": "Token amounts by role (if CSV with roles is used)",
"properties": {
"VIP": {
"type": "number"
},
"VP": {
"type": "number"
},
"developer": {
"type": "number"
},
"manager": {
"type": "number"
},
"operational": {
"type": "number"
}
},
"type": "object"
},
"uniformAmount": {
"description": "Uniform amount for all employees (if no CSV role-mapping is used)",
"type": "number"
}
},
"type": "object"
}