generateWallet
Create and manage Ethereum wallets on the MCP Ethers Wallet server. Optionally save the private key to the server's environment variables for secure, future use.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
saveToEnv | No | Optional. If true, the private key will be saved to the server's environment variables for future use. Default is false. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"saveToEnv": {
"description": "Optional. If true, the private key will be saved to the server's environment variables for future use. Default is false.",
"type": "boolean"
}
},
"type": "object"
}