load_wallet
Access stored wallets on the Algorand MCP Server by entering the wallet name and password, decrypting the mnemonic, and retrieving the wallet address for blockchain interactions.
Instructions
Load a stored wallet and return the address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Wallet name/identifier | |
password | Yes | Password to decrypt the mnemonic |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Wallet name/identifier",
"type": "string"
},
"password": {
"description": "Password to decrypt the mnemonic",
"type": "string"
}
},
"required": [
"name",
"password"
],
"type": "object"
}