generate_wallets
Create custodial wallets for employees to facilitate Solana token airdrops. Supports role-based allocation and automated email notifications via Crossmint HR Airdrop MCP.
Instructions
Generate custodial wallets for employees using Crossmint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | Crossmint API key (optional, defaults to test key for demo) | |
employees | Yes | List of employees in format "name,email" (one per line) |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "Crossmint API key (optional, defaults to test key for demo)",
"type": "string"
},
"employees": {
"description": "List of employees in format \"name,email\" (one per line)",
"type": "string"
}
},
"required": [
"employees"
],
"type": "object"
}