EVM MCP Server

by mcpdotdirect
Verified

transfer_erc20

Transfer ERC20 tokens to another address

Input Schema

NameRequiredDescriptionDefault
amountYesThe amount of tokens to send (in token units, e.g., '10' for 10 tokens)
networkNoNetwork name (e.g., 'ethereum', 'optimism', 'arbitrum', 'base', etc.) or chain ID. Supports all EVM-compatible networks. Defaults to Ethereum mainnet.
privateKeyYesPrivate key of the sending account (this is used for signing and is never stored)
toAddressYesThe recipient address
tokenAddressYesThe address of the ERC20 token contract

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "amount": { "description": "The amount of tokens to send (in token units, e.g., '10' for 10 tokens)", "type": "string" }, "network": { "description": "Network name (e.g., 'ethereum', 'optimism', 'arbitrum', 'base', etc.) or chain ID. Supports all EVM-compatible networks. Defaults to Ethereum mainnet.", "type": "string" }, "privateKey": { "description": "Private key of the sending account (this is used for signing and is never stored)", "type": "string" }, "toAddress": { "description": "The recipient address", "type": "string" }, "tokenAddress": { "description": "The address of the ERC20 token contract", "type": "string" } }, "required": [ "privateKey", "tokenAddress", "toAddress", "amount" ], "type": "object" }