wallet_from_private_key
Generate a wallet for Ethereum and EVM-compatible blockchains using a private key with the MCP Crypto Wallet EVM server. Enables wallet creation for blockchain operations.
Instructions
Create a wallet from a private key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
privateKey | Yes | The private key |
Input Schema (JSON Schema)
{
"properties": {
"privateKey": {
"description": "The private key",
"type": "string"
}
},
"required": [
"privateKey"
],
"type": "object"
}