Skip to main content
Glama

get_bid_recommendation

Read-only

Analyze market data and recommend a bid price range for a CryptoPunk trait selection. Combines floor price, competing bids, and set composition into actionable guidance. composition lists only the traits that define the selection; use absentTraits for a full exclusion list when needed. Rate limit: 1 per 1 min (recommend bucket).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typesNoType names to filter (e.g. ['Male', 'Zombie'])
punkIdsNoExplicit punk IDs (overrides trait filters)
matchModeNoall
excludedTraitsNoTraits to exclude
includedTraitsNoTraits to include

TDQS

A3.7/5.0
Behavior4/5

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

The description adds valuable behavioral context beyond the readOnlyHint annotation: it explains that the tool combines floor price, competing bids, and set composition, and discloses a rate limit of 1 per 1 minute. It does not mention return format or side effects, but for a read-only recommendation tool, the added context is sufficient.

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 and front-loaded with the main purpose. However, the sentence about `composition`/`absentTraits` is cryptic and adds confusion without clearly earning its place. Overall, it is still compact and structured, but the misleading term reduces clarity.

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

Completeness3/5

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

With no output schema, the description should explain what the response contains; it only implies a bid price range but doesn't specify the structure. The parameter interactions and the odd `absentTraits` reference leave gaps. Given the tool's moderate complexity, the description is not fully complete, though it covers the core purpose and rate limit.

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

Parameters2/5

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

The description references `composition` and `absentTraits`, neither of which exist in the input schema (which has `includedTraits` and `excludedTraits`). This is misleading because an agent might try to pass `absentTraits` as a parameter, but the schema has additionalProperties: false, so it would be rejected. The description does not clarify the actual parameters beyond what the schema already states, and the erroneous instruction detracts from schema 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 clearly states 'Analyze market data and recommend a bid price range for a CryptoPunk trait selection,' giving a specific verb ('recommend') and resource (bid price range). It distinguishes itself from sibling tools like get_floor_price or get_bids_for_punk by combining multiple data sources into actionable guidance.

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

Usage Guidelines3/5

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

The description provides context for when to use the tool (for a CryptoPunk trait selection) and includes a rate limit warning, but it does not explicitly state when to prefer this over siblings or exclude situations. The note about 'use `absentTraits` for a full exclusion list' is potentially confusing because `absentTraits` is not a valid input parameter in the schema, so it misleads rather than guides.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Every tool targets a distinct resource or action: trait/type browsing, punk metadata, listings/floor price, bids by root/punk, Merkle computation/filtering/resolution, and bid recommendations. The related Merkle tools have clear boundaries: compute builds a root from IDs, filter returns IDs for a trait selection, and resolve reverses a root only if it has bids.

Naming Consistency5/5

All tool names follow a consistent `verb_noun` pattern in snake_case (e.g., browse_traits, get_floor_price, resolve_merkle_root). The two bid lookup tools use the same `get_bids_for_X` structure, reinforcing predictability.

Tool Count5/5

Eleven tools is well within the ideal 3-15 range and each covers a necessary facet of the CryptoPunks domain—from market data (listings, floor) to trait-based bid analysis (merkle roots, recommendations). No redundancy or bloat.

Completeness5/5

The tool surface covers the full read-side lifecycle: viewing traits/types/punks, checking market prices/listings, analyzing existing bids, and supporting trait-based bid strategies through Merkle root operations and recommendations. It lacks write actions (e.g., placing bids), but the server's purpose is clearly analytical, so no obvious operational gap exists.

Resources