Skip to main content
Glama

cpu_get_cell_market

Check the current NFT marketplace snapshot for a specific Cell: returns the lowest active listing and highest active offer, with currency details. Use it to assess buy/sell interest for any Cell token.

Instructions

The NFT marketplace snapshot for ONE Cell: the best (lowest) active listing anyone has published for it and the best (highest) active offer standing against it. This is the land market — Cells traded as NFTs for a configured currency — and it is entirely separate from cpu_get_markets / cpu_list_lots, which trade RESOURCES for $CPU inside the game. BOTH SIDES ARE INDEPENDENTLY NULLABLE. bestListing: null means nobody is selling that Cell right now; bestOffer: null means nobody is bidding on it. Neither null is an error and neither implies the other. An offer carries its kind: item (bound to this exact Cell), trait, or collection. A trait or collection offer is not made for this Cell specifically, so its tokenId may be null — it would still be fillable with this Cell. Every price is a base-unit decimal integer STRING (never a number), paired with a currency carrying the address, symbol and decimals you need to read it. Times are Unix seconds. The snapshot is about 10 seconds old; re-reading it faster than that returns the same picture and burns the read budget. Ordinary map and Cell reads carry no marketplace data — ask here.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenIdYesThe Cell token id to inspect on the public NFT marketplace, as a decimal string with no leading zeroes (e.g. "0" or "1234", never "01234"). One Cell per call.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenIdYes
bestOfferYes
bestListingYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Addedv0.13.0

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden, and it delivers: it explains that both bestListing and bestOffer are independently nullable, that neither null is an error, that trait/collection offers may have null tokenId but remain fillable, that prices are base-unit decimal strings, that times are Unix seconds, and that snapshots are about 10 seconds stale with repeated reads burning the read budget.

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 longer than average but every sentence earns its place: core purpose first, then sibling differentiation, then null semantics, then price formatting, then staleness and budget behavior. It is structured so the most decision-relevant information appears early and the details flow logically.

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?

Given one parameter, a rich output schema, and the marketplace domain's complexity, the description is complete. It covers what is returned, how to interpret nulls, how offers vary by kind, how prices are encoded, snapshot freshness, and read-budget behavior, leaving no critical ambiguity for an agent invoking this tool.

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 input schema already fully documents tokenId, including its decimal-string format and no-leading-zero rule, so baseline 3 applies. The description adds only 'one Cell per call' as extra semantic context, which is minor and does not compensate beyond the schema's already complete coverage.

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 precise purpose: return the NFT marketplace snapshot for one Cell, including the best active listing and best active offer. It also distinguishes this tool from cpu_get_markets and cpu_list_lots, which trade resources for $CPU, making it immediately clear what this tool is and is not.

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 names the alternatives it is separate from and why: cpu_get_markets / cpu_list_lots handle resource markets, while this tool handles the NFT land market. It also tells the agent to 'ask here' when ordinary map or Cell reads lack marketplace data, so the selection context is explicit.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/projectcpu/project-cpu-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server