Skip to main content
Glama
p1xelapp

solana-nft-mcp

by p1xelapp

Floor prices (Magic Eden only)

get_floor_prices
Read-only

Get current floor prices in SOL for up to 10 Magic Eden collections by submitting their symbols.

Instructions

Current floor price in SOL for up to 10 collections, read from MAGIC EDEN ONLY - it takes Magic Eden symbols and returns Magic Eden rows, with no other marketplace and no other currency, whether or not an OpenSea key is configured. For a cross-marketplace floor comparison use get_collection_stats, which quotes each marketplace in its own currency and refuses to compare across them. Use search_collections first if you only know a human name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
symbolsYesMagic Eden collection symbols

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.17.2

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=true, so safety is covered. The description adds concrete behavioral constraints: Magic Eden symbols and rows only, no other marketplace or currency, and independence from an OpenSea key. It does not mention failure modes or data freshness, but those are minor for a simple read-only lookup.

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 front-loaded with the core behavior and scope, then states exclusions, then routes to relevant sibling tools. It is dense but every sentence serves a purpose; the repeated 'Magic Eden only' emphasis is intentional and not padding.

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 one-parameter, read-only tool with fully documented schema, the description supplies all needed context: source marketplace, currency, input type, size limit, exclusions, and fallback tools. No output schema exists, but the description's 'returns Magic Eden rows' plus the stated floor-price-in-SOL behavior is enough for correct invocation.

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 coverage is 100% and the single symbols parameter already has type, pattern, min/max length, min/max items, and a description. The description restates that it takes Magic Eden symbols and supports up to 10 collections, adding slight provenance context but not materially going beyond the schema.

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 first sentence states a specific verb ('returns current floor price') with the resource (up to 10 collections) and a precise scope (Magic Eden only, in SOL). It also distinguishes itself from siblings like get_collection_stats and search_collections, so an agent can identify it without ambiguity.

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

Usage Guidelines5/5

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

The description explicitly says when to use this tool: for Magic Eden-only floor prices in SOL. It names get_collection_stats as the alternative for cross-marketplace comparison and explains why that tool is different, and also instructs agents to use search_collections first when only a human-readable collection name is known.

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