getKeypairInfo
Retrieve keypair details, including public key and balance, by providing the base58 encoded secret key using the Solana MCP Server tool.
Instructions
Get information about a keypair from its secret key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
secretKey | Yes | Base58 encoded secret key or array of bytes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"secretKey": {
"description": "Base58 encoded secret key or array of bytes",
"type": "string"
}
},
"required": [
"secretKey"
],
"type": "object"
}