Skip to main content
Glama

Build Address

cardano_address_build
Idempotent

Build a Cardano address from payment and optional stake verification keys. Generates a bech32 address and can write it to a file.

Instructions

Build a Cardano address from verification keys.

Args:

  • payment_verification_key_file (string): Path to payment verification key file

  • stake_verification_key_file (string, optional): Path to stake verification key file (for base addresses)

  • out_file (string, optional): File path to write the address to

Returns: The bech32 address.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
out_fileNoFile path to write the address to
stake_verification_key_fileNoPath to stake verification key file
payment_verification_key_fileYesPath to payment verification key file

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare the safety profile (readOnlyHint=false, idempotentHint=true, destructiveHint=false), so the bar is lower. The description adds useful context beyond them by stating the return value is a bech32 address and that out_file writes the address to disk, but it omits prerequisites (keys must pre-exist) and any network/era assumptions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded purpose sentence followed by a compact args list and a one-line return note. It does re-list parameter descriptions that already exist in the schema, a mild redundancy, but nothing is bloated.

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?

There is no output schema, and the description partially compensates by naming the returned bech32 address. However, for an address-building tool that writes a file it omits notable details such as network/era assumptions and the fact that keys must be generated beforehand.

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?

Schema coverage is 100%, so the baseline is 3. The description adds real meaning beyond the schema by noting the stake verification key is for base addresses, which explains why that optional parameter exists and when to supply it.

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?

States a specific verb (Build) and resource (Cardano address) plus the input class (verification keys). This distinguishes it from siblings like cardano_stake_address_build and cardano_address_info, though it does not name an alternative explicitly.

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?

There is no when-to-use guidance or mention of alternatives such as cardano_stake_address_build. The only routing hint is the parenthetical '(for base addresses)' on the stake key, which implies but does not state the selection condition.

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

Deploy Server

Other Tools