Skip to main content
Glama

Create Stake Registration Certificate

cardano_stake_address_registration_certificate
Idempotent

Generate a stake address registration certificate from a stake verification key file to register a Cardano stake address, with optional deposit and output path.

Instructions

Create a stake address registration certificate.

Args:

  • stake_verification_key_file (string): Path to stake verification key file

  • key_reg_deposit_amt (number, optional): Key registration deposit amount in lovelace (Conway era)

  • out_file (string): Output path for the certificate file

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
out_fileYesOutput path for the certificate file
key_reg_deposit_amtNoKey registration deposit amount in lovelace (Conway era)
stake_verification_key_fileYesPath to stake verification key file

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=false, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds no further behavioral context such as file overwrite behavior, required permissions, or effects on existing state; it merely restates the creation purpose and repeats schema parameter descriptions.

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

Conciseness3/5

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

The description is front-loaded with a clear purpose sentence, but the subsequent Args list duplicates information already present in the input schema for all three parameters, making it less concise than it could be.

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?

The description covers the basic action and all parameters, and annotations supply the safety profile. However, for a certificate creation tool with no output schema, it lacks guidance on when to use it, what the resulting certificate contains, or how it fits into a broader workflow, leaving some contextual gaps.

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 three parameters. The description repeats these same parameter descriptions in an Args list without adding syntax, format, or usage details beyond what the schema provides.

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 states a specific verb and resource: 'Create a stake address registration certificate.' This clearly identifies the tool's function and inherently distinguishes it from siblings like deregistration or delegation certificates, though it does not explicitly name those alternatives.

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?

The description provides no guidance on when to use this tool versus the deregistration or delegation certificate tools, nor does it mention prerequisites such as needing a stake verification key file. It simply lists arguments.

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