Skip to main content
Glama
p1xelapp

solana-nft-mcp

by p1xelapp

What owning this actually means

get_asset_trust
Read-only

Decode an NFT's Metaplex Core rules to reveal custody facts: who can move or burn it, if frozen, royalties enforced. Use before purchase, when a listing cannot transfer, or to check pack burn on open.

Instructions

Decode the Metaplex Core plugins on an asset and translate them into custody facts: can the issuer move or burn it without the holder's signature (permanent delegates - normal on packs, a red flag on keepers), is it frozen, are royalties enforced by a program rule set or merely advisory, is the metadata mutable, is the serial an on-chain edition or just printed text. Plugins set on the COLLECTION apply to every asset in it and are read too, marked inherited. Marketplaces show the picture and the price; this shows the rules attached to the account. Use before a purchase, when a listing 'cannot transfer', or when someone asks whether a pack burns on open. Read-only, decoded from raw bytes, no indexer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mintYesMetaplex Core asset address

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.17.2

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnlyHint and openWorldHint annotations, the description adds valuable behavioral detail: data is 'decoded from raw bytes, no indexer,' collection-level plugins are read and 'marked inherited,' and the read is purely read-only. This gives an agent accurate expectations about data sourcing and coverage without contradicting the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence earns its place: purpose, concrete facts, collection inheritance nuance, marketplace contrast, use cases, and data-source caveat. The most important purpose statement is front-loaded, and there is no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter read tool with no output schema, the description covers what the tool does, what questions it answers, how it handles collection-level plugins, when to use it, and the raw-bytes/no-indexer caveat. An agent has enough context to invoke it correctly and interpret its high-level purpose.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already documents the only parameter, mint, as 'Metaplex Core asset address,' giving 100% schema description coverage. The tool description reinforces that the asset is a Metaplex Core asset but does not add meaningful syntactic or semantic details beyond the schema, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Decode the Metaplex Core plugins on an asset and translate them into custody facts.' It then enumerates concrete questions the tool answers (delegates, frozen state, royalties, metadata mutability, serial authenticity), and distinguishes itself from marketplaces that show only picture and price. This clearly differentiates it from siblings like get_asset and explain_mechanics.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit when-to-use triggers: 'Use before a purchase, when a listing "cannot transfer", or when someone asks whether a pack burns on open.' It also hints at a contrast with marketplaces, but does not name alternative sibling tools or provide explicit when-not-to-use exclusions, so it falls just short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.