Skip to main content
Glama
junxit

mcp-bitcoin

by junxit

validate_address

Read-only

Validate a Bitcoin address to verify its format and identify the network it belongs to. Works offline, optionally compare against a specific network.

Instructions

Check whether an address is valid and which network it belongs to.

Works offline.

Args: address: The address to check. network: Compare against this network instead of the server default.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYes
networkNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already establish that this is read-only and non-destructive. The description adds meaningful behavioral context by stating it works offline and that it determines network membership, which goes beyond the structured 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 extremely compact: a clear purpose sentence, an offline behavior note, and concise parameter definitions. Every sentence adds value and the most important information is front-loaded.

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 two-parameter tool with annotations and an output schema, the description is largely complete. It covers purpose, offline capability, and parameter semantics; only minor details like supported network values or address formats are missing, but these are not critical given the output schema.

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

Parameters4/5

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

With 0% schema description coverage, the description carries the burden of explaining parameters. It explains the network parameter clearly as an override to the server default, and identifies address as the input to check, though it does not specify address format expectations.

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 specific purpose: validating an address and identifying its network. This distinguishes it from sibling validate_mnemonic, which targets a different input type.

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 notes that the tool works offline, which provides some usage context, but it does not explicitly state when to prefer this tool over alternatives or when not to use it. The differentiation from validate_mnemonic is implied rather than stated.

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