EVM MCP Server

by mcpdotdirect
Verified

get_address_from_private_key

Get the EVM address derived from a private key

Input Schema

NameRequiredDescriptionDefault
privateKeyYesPrivate key in hex format (with or without 0x prefix). SECURITY: This is used only for address derivation and is not stored.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "privateKey": { "description": "Private key in hex format (with or without 0x prefix). SECURITY: This is used only for address derivation and is not stored.", "type": "string" } }, "required": [ "privateKey" ], "type": "object" }