Alchemy MCP Plugin

get_nft_metadata

Retrieve metadata for a specific NFT by providing its contract address and token ID. Supports ERC721 and ERC1155 token types, with an option to refresh cached data.

Instructions

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" }
ID: p99w73336q