MCP Ethers Wallet

signMessage

Sign a message using the server's wallet

Input Schema

NameRequiredDescriptionDefault
messageYesThe message to sign
providerNoOptional. Either a network name or custom RPC URL. Use getSupportedNetworks to get a list of supported networks.

Input Schema (JSON Schema)

{ "properties": { "message": { "description": "The message to sign", "type": "string" }, "provider": { "description": "Optional. Either a network name or custom RPC URL. Use getSupportedNetworks to get a list of supported networks.", "type": "string" } }, "required": [ "message" ], "type": "object" }