MCP Ethers Wallet

sendTransaction

Send ETH from the server's wallet to a recipient

Input Schema

NameRequiredDescriptionDefault
dataNoOptional. Data to include in the transaction
providerNoOptional. Either a network name or custom RPC URL. Use getSupportedNetworks to get a list of supported networks.
toYesThe recipient address
valueYesThe amount of ETH to send

Input Schema (JSON Schema)

{ "properties": { "data": { "description": "Optional. Data to include in the transaction", "type": "string" }, "provider": { "description": "Optional. Either a network name or custom RPC URL. Use getSupportedNetworks to get a list of supported networks.", "type": "string" }, "to": { "description": "The recipient address", "type": "string" }, "value": { "description": "The amount of ETH to send", "type": "string" } }, "required": [ "to", "value" ], "type": "object" }