Skip to main content
Glama
p1xelapp

solana-nft-mcp

by p1xelapp

Wallet holdings

get_wallet_holdings
Read-only

Check any Solana wallet's NFT holdings. Combines marketplace and on-chain indexes to show owned items, including unlisted and compressed assets, and reveals gaps between the two counts.

Instructions

Collectibles held by a wallet, from two independent readers: Magic Eden's index (names, collections, images, listing state) and the chain's own asset index (every standard, including compressed and unlisted items a marketplace may not carry). Answers 'what does this wallet hold', 'what is in my wallet', 'does this address own anything'. The two counts are compared and any gap is named. Read-only - this server never asks for keys and cannot move anything.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoHow many items to read from the marketplace index. Default 50.
walletYesWallet address

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.17.2

TDQS

A4.1/5.0
Behavior4/5

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

Beyond the readOnlyHint annotation, the description adds meaningful behavioral detail: it uses two independent readers, compares counts, and explicitly states it never asks for keys and cannot move anything. This enriches the agent's understanding of safety and scope, though it could mention pagination or rate limits.

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

Conciseness4/5

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

The description is concise but packs substantial information: purpose, dual-source behavior, question coverage, and a read-only guarantee. It is front-loaded with the main function and uses efficient phrasing, though it could be slightly tightened.

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

Completeness4/5

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

For a read-only tool with a simple two-parameter schema, the description covers the core semantics, return scope, and safety profile. The absence of an output schema is compensated by explaining what the result represents (holdings from two readers with a comparison), so the agent can anticipate the response shape reasonably well.

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?

Schema description coverage is 100%, so both parameters are documented with clear descriptions and constraints. The description adds no additional parameter-level nuance beyond what the schema provides, so a baseline 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 states a specific verb ('get') with a clear resource ('wallet holdings') and explicitly answers common questions. It distinguishes itself from siblings by emphasizing the dual-reader approach and coverage of unlisted/compressed assets, which is not obvious from the name alone.

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?

It clearly indicates the intended use case ('what does this wallet hold') and sets expectations about read-only behavior. However, it does not explicitly mention alternatives or state when not to use it (e.g., when to prefer get_wallet_profile or get_wallet_activity), leaving some inference to the agent.

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