Alchemy MCP Plugin

get_contracts_for_owner

Retrieve NFT contracts associated with a specific wallet address, with options to include or exclude filters like spam and airdrops, using the Alchemy MCP Plugin.

Instructions

Get NFT contracts owned by an address

Input Schema

NameRequiredDescriptionDefault
excludeFiltersNoFilters to exclude from the response
includeFiltersNoFilters to include in the response
ownerYesThe wallet address to get contracts for
pageKeyNoKey for pagination
pageSizeNoNumber of results per page

Input Schema (JSON Schema)

{ "properties": { "excludeFilters": { "description": "Filters to exclude from the response", "items": { "enum": [ "spam", "airdrops" ], "type": "string" }, "type": "array" }, "includeFilters": { "description": "Filters to include in the response", "items": { "enum": [ "spam", "airdrops" ], "type": "string" }, "type": "array" }, "owner": { "description": "The wallet address to get contracts for", "type": "string" }, "pageKey": { "description": "Key for pagination", "type": "string" }, "pageSize": { "description": "Number of results per page", "type": "number" } }, "required": [ "owner" ], "type": "object" }
ID: p99w73336q