Alchemy MCP Plugin

get_nft_metadata

Get metadata for a specific NFT

Input Schema

NameRequiredDescriptionDefault
contractAddressYesThe contract address of the NFT
refreshCacheNoWhether to refresh the cache
tokenIdYesThe token ID of the NFT
tokenTypeNoThe token type (ERC721 or ERC1155)

Input Schema (JSON Schema)

{ "properties": { "contractAddress": { "description": "The contract address of the NFT", "type": "string" }, "refreshCache": { "description": "Whether to refresh the cache", "type": "boolean" }, "tokenId": { "description": "The token ID of the NFT", "type": "string" }, "tokenType": { "description": "The token type (ERC721 or ERC1155)", "type": "string" } }, "required": [ "contractAddress", "tokenId" ], "type": "object" }