Alchemy MCP Plugin

get_tokens_for_owner

Get tokens owned by an address

Input Schema

NameRequiredDescriptionDefault
contractAddressesNoList of contract addresses to filter by
ownerYesThe wallet address to get tokens for
pageKeyNoKey for pagination
pageSizeNoNumber of results per page

Input Schema (JSON Schema)

{ "properties": { "contractAddresses": { "description": "List of contract addresses to filter by", "items": { "type": "string" }, "type": "array" }, "owner": { "description": "The wallet address to get tokens for", "type": "string" }, "pageKey": { "description": "Key for pagination", "type": "string" }, "pageSize": { "description": "Number of results per page", "type": "number" } }, "required": [ "owner" ], "type": "object" }