TON NFT Operations
View and transfer NFTs on the TON blockchain.
MCP Tools
Tool Required Optional
get_nfts
— limit , offset , walletSelector
get_nfts_by_address
address
limit , offset
get_nft
nftAddress
—
send_nft
nftAddress , toAddress
comment , walletSelector
Workflows
List My NFTs
-
Call get_nfts to list NFTs in the active wallet
-
Use limit and offset for pagination
View NFT Details
- Call get_nft with the nftAddress
Send an NFT
-
Call get_nfts to find the NFT address if the user doesn't have it
-
Confirm the transfer with the user
-
Call send_nft with nftAddress and toAddress
-
Poll get_transaction_status with the returned normalizedHash until status is completed or failed (see ton-balance skill)
Notes
-
Always confirm with the user before transferring an NFT
-
If no wallet is configured, use the ton-create-wallet skill first