Alchemy MCP Plugin

get_nfts_for_contract

Get all NFTs for a contract

Input Schema

NameRequiredDescriptionDefault
contractAddressYesThe contract address of the NFT collection
pageKeyNoKey for pagination
pageSizeNoNumber of results per page
tokenUriTimeoutInMsNoTimeout for token URI resolution in milliseconds
withMetadataNoWhether to include metadata

Input Schema (JSON Schema)

{ "properties": { "contractAddress": { "description": "The contract address of the NFT collection", "type": "string" }, "pageKey": { "description": "Key for pagination", "type": "string" }, "pageSize": { "description": "Number of results per page", "type": "number" }, "tokenUriTimeoutInMs": { "description": "Timeout for token URI resolution in milliseconds", "type": "number" }, "withMetadata": { "description": "Whether to include metadata", "type": "boolean" } }, "required": [ "contractAddress" ], "type": "object" }