Skip to main content
Glama
sailorpepe

Bitcoin Stamps MCP

Get Src20

get_src20

Fetch a token's full profile by tick: deploy info (supply, limits, decimals), mint progress (minted, holders), and market data (price, cap, volume, change).

Instructions

Everything about one SRC-20 token in one call: the DEPLOY record (max supply, per-mint limit, decimals, creator, block), mint status (total_minted, progress %, total_mints, holders), and market data (price in BTC/USD, market cap, 24h volume, 24h/7d/30d change, primary exchange, data_quality_score). 7d/30d/total volume are often 0 or null — the upstream exchanges do not publish them; do not read a zero there as 'no trading'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It goes beyond a simple data list by warning that 7d/30d/total volume are often 0 or null due to upstream exchange behavior, and explicitly cautions against misinterpreting zero as 'no trading'. This is valuable, non-obvious behavioral context.

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 well-organized: a lead sentence conveying scope, a parenthetical breakdown of returned data, and a focused caveat sentence. Each sentence earns its place, and the important zero-volume warning is given prominent placement.

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?

The output schema exists, so detailed return fields do not need repetition. The description sufficiently explains the tool's aggregate nature, the data categories included, and a key data-quality quirk. It could add guidance on finding a tick or behavior for unknown ticks, but these are minor gaps given the simple single-parameter input.

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?

Schema coverage is 0%, and the description only implies that 'tick' identifies the SRC-20 token. It does not explain tick format, case sensitivity, or how to resolve a valid tick. The description should compensate more for the bare schema, but it still weakly ties the single parameter to the tool's purpose.

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 the verb and resource: retrieve comprehensive data for one SRC-20 token. It enumerates the specific data groups (deploy record, mint status, market data), which distinguishes it from narrower sibling tools like src20_balance, src20_holders, or src20_market.

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?

The phrase 'Everything about one SRC-20 token in one call' clearly communicates when to use this tool: when a single token's full picture is needed. It does not explicitly name alternatives or exclusions, but the context is clear enough for an agent to choose this over single-purpose sibling tools.

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