Skip to main content
Glama

btc_testnet_get_utxos

Read-only

Get unspent transaction outputs (UTXOs) for a Bitcoin address on Bitcoin testnet3. Returns list of unspent outputs with tx hash, position, height, and value in satoshis.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYesBitcoin address (P2PKH, P2SH, P2WPKH, P2WSH, or P2TR)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds behavioral context by specifying the return payload ('Returns list of unspent outputs with tx hash, position, height, and value in satoshis'). It does not mention rate limits or errors, but given the simple read-only nature, this is sufficient. No contradiction with annotations.

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 two sentences, front-loaded with the core purpose and followed by the return format. Every word earns its place, with no redundant information. It is concise and well-structured.

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?

For a simple read-only tool with one parameter and no output schema, the description covers the essential purpose, network, and return fields. It does not specify whether unconfirmed UTXOs are included, which could be a meaningful gap, but overall it is sufficiently complete for a straightforward query 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?

Schema coverage is 100% (the 'address' parameter is fully described with its allowed formats). The description does not add significant parameter-level detail beyond what the schema already states. The network context (testnet3) is useful but is more about tool purpose than the parameter's semantics.

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 tool's function: 'Get unspent transaction outputs (UTXOs) for a Bitcoin address on Bitcoin testnet3.' It uses a specific verb ('Get'), identifies the resource (UTXOs), and distinguishes from the mainnet sibling by specifying 'testnet3'. It also mentions the return fields, adding precision.

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 description clearly scopes the tool to Bitcoin testnet3, making it evident when this tool is appropriate (for testnet addresses). However, it does not explicitly name alternatives like 'btc_get_utxos' for mainnet usage, so it lacks explicit exclusions or 'when not to use' guidance.

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