Skip to main content
Glama

Satoshidata Wallet Intel

chain_awakenings

Return dormant-coin awakening events over a bounded window. Supports filters for minimum dormancy age, minimum BTC value, window bounds, and result limit; forwards Wallet+ Bearer or x402 payment headers when present.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum rows to return.
sinceNoWindow start as block height, ISO date/time, or relative Nd value. Defaults to last 24h.
untilNoWindow end as block height, ISO date/time, or now. Defaults to now.
cursorNoInteger pagination cursor returned by the previous page.
formatNoResponse format.json
min_btcNoMinimum BTC value of the spent dormant UTXO.
address_filterNoComma-separated Bitcoin address watchlist filter.
min_dormancy_daysNoMinimum untouched age of the spent UTXO.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
dataNo
errorNo
endpointYes
status_codeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed7 schema fields changed
    • addedInput schema / properties / address_filter
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Comma-separated Bitcoin address watchlist filter.",
      +  "title": "Address Filter"
      +}
    • addedInput schema / properties / cursor
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Integer pagination cursor returned by the previous page.",
      +  "title": "Cursor"
      +}
    • addedInput schema / properties / format
      Added value: +{
      +  "default": "json",
      +  "description": "Response format.",
      +  "enum": [
      +    "json",
      +    "csv"
      +  ],
      +  "title": "Format",
      +  "type": "string"
      +}
    • addedInput schema / properties / limit / maximum
      Added value: +250
    • addedInput schema / properties / limit / minimum
      Added value: +1
    • addedInput schema / properties / min_btc / minimum
      Added value: +0
    • addedInput schema / properties / min_dormancy_days / minimum
      Added value: +0
  2. Changed7 schema fields changed
    • removedInput schema / properties / address_filter
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Comma-separated Bitcoin address watchlist filter.",
      -  "title": "Address Filter"
      -}
    • removedInput schema / properties / cursor
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Integer pagination cursor returned by the previous page.",
      -  "title": "Cursor"
      -}
    • removedInput schema / properties / format
      Removed value: -{
      -  "default": "json",
      -  "description": "Response format.",
      -  "enum": [
      -    "json",
      -    "csv"
      -  ],
      -  "title": "Format",
      -  "type": "string"
      -}
    • removedInput schema / properties / limit / maximum
      Removed value: -250
    • removedInput schema / properties / limit / minimum
      Removed value: -1
    • removedInput schema / properties / min_btc / minimum
      Removed value: -0
    • removedInput schema / properties / min_dormancy_days / minimum
      Removed value: -0
  3. Changed12 schema fields changed
    • addedInput schema / properties / address_filter
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Comma-separated Bitcoin address watchlist filter.",
      +  "title": "Address Filter"
      +}
    • addedInput schema / properties / cursor
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Integer pagination cursor returned by the previous page.",
      +  "title": "Cursor"
      +}
    • addedInput schema / properties / format
      Added value: +{
      +  "default": "json",
      +  "description": "Response format.",
      +  "enum": [
      +    "json",
      +    "csv"
      +  ],
      +  "title": "Format",
      +  "type": "string"
      +}
    • addedInput schema / properties / limit / description
      Added value: +"Maximum rows to return."
    • addedInput schema / properties / limit / maximum
      Added value: +250
    • addedInput schema / properties / limit / minimum
      Added value: +1
    • addedInput schema / properties / min_btc / description
      Added value: +"Minimum BTC value of the spent dormant UTXO."
    • addedInput schema / properties / min_btc / minimum
      Added value: +0
    • addedInput schema / properties / min_dormancy_days / description
      Added value: +"Minimum untouched age of the spent UTXO."
    • addedInput schema / properties / min_dormancy_days / minimum
      Added value: +0
    • addedInput schema / properties / since / description
      Added value: +"Window start as block height, ISO date/time, or relative Nd value. Defaults to last 24h."
    • addedInput schema / properties / until / description
      Added value: +"Window end as block height, ISO date/time, or now. Defaults to now."
  4. Added

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It adds a useful note about forwarding Wallet+ Bearer or x402 payment headers, indicating authentication/payment behavior. However, it does not mention read-only behavior, rate limits, or pagination traits, leaving gaps.

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 a single sentence that packs the core purpose and key behavioral note without redundancy. Every clause contributes meaning, making it efficient and easy to parse.

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 tool has a rich input schema and an output schema, so the description does not need to explain return values. It covers the primary purpose, filter categories, and header forwarding. It slightly lacks context on what constitutes an 'awakening event', but overall is adequate given the structured metadata.

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 schema already documents all eight parameters. The description briefly summarizes filters (dormancy age, BTC value, window bounds, limit) but adds no new semantic detail beyond what the schema provides, aligning with the baseline.

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 clearly states the tool returns dormant-coin awakening events over a bounded window, specifying the resource and action. It does not explicitly distinguish from related siblings like dormancy_flushes or pulse_dormant, but the focused phrasing is unambiguous.

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?

No guidance is provided about when to use this tool versus alternatives, nor any exclusions or prerequisites. The description implies usage for querying dormant-coin events but does not help an agent choose between this and similar sibling tools.

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.

Resources