radiant_register_key
Store a WIF private key under a secure alias in the server keyring so signing tools can use the alias instead of resending the key, keeping it out of logs and transcripts.
Instructions
Store a WIF private key in the server-side keyring under an alias. Subsequent signing tools can reference the key by key_alias instead of resending the WIF on every call — keeps the WIF out of the MCP transport, agent transcripts, and client logs. The keyring lives at RADIANT_KEYRING_FILE (default ~/.radiant-mcp/keyring.json) and is required to be 0600 mode on POSIX.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wif | Yes | WIF-encoded private key to store. This is the LAST time you need to transmit it. | |
| alias | Yes | Alphanumeric alias (1-64 chars). Used as the key_alias parameter on signing tools. | |
| overwrite | No | Replace an existing alias if it exists. Defaults to false (rejecting duplicates). |