Skip to main content
Glama

EVM MCP Server

by chulanpro5

transfer_erc20

Transfer ERC20 tokens to a recipient address on any EVM-compatible network using a private key for signing, specifying token contract, recipient, and amount.

Instructions

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" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/chulanpro5/evm-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server