Skip to main content
Glama

get_rune_market_info

Retrieve market data for a Bitcoin Rune by name, including USD price, market cap, and 24h volume.

Instructions

Get market data for a Bitcoin Rune. Returns price in USD, market cap, and 24h volume.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesRune name (e.g., UNCOMMON•GOODS or UNCOMMONGOODS)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the return fields and does not mention read-only nature, data freshness, rate limits, authentication needs, or any other behavioral traits. The verb 'Get' implies a read, but that is not made explicit.

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?

Two short sentences with zero waste. The purpose is front-loaded, followed by the key return values, making it easy to scan and parse.

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?

For a simple read tool with one parameter and no output schema, the description adequately explains the return fields, which compensates for the missing output schema. However, it lacks usage guidance relative to related tools and any behavioral context, leaving clear gaps for an agent trying to select it confidently.

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 the single 'name' parameter is already fully documented with an example. The description adds no additional meaning about the parameter format or constraints, so the baseline of 3 applies.

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

Purpose4/5

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

The description states a specific verb and resource: 'Get market data for a Bitcoin Rune.' It also lists the exact output fields (price in USD, market cap, 24h volume), making the purpose clear. However, it does not explicitly differentiate from sibling tools like get_rune_info, which could also return rune data, so it stops short of a 5.

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

Usage Guidelines2/5

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

The description provides no guidance about when to use this tool versus alternatives such as get_rune_info or get_rune_activity. It only states what the tool does, leaving the agent to infer context and exclusions.

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