Skip to main content
Glama

Create DRep Registration Certificate

cardano_governance_drep_registration_certificate
Idempotent

Create a DRep registration certificate for Cardano governance. Supply the DRep verification key, deposit amount, and output path; optionally include metadata anchor URL and hash.

Instructions

Create a DRep registration certificate.

Args:

  • drep_verification_key_file (string): Path to DRep verification key file

  • key_reg_deposit_amt (number): Registration deposit in lovelace

  • anchor_url (string, optional): DRep metadata anchor URL

  • anchor_data_hash (string, optional): DRep metadata anchor data hash

  • out_file (string): Output path for the certificate

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
out_fileYesOutput path for the certificate
anchor_urlNoDRep metadata anchor URL
anchor_data_hashNoDRep metadata anchor data hash
key_reg_deposit_amtYesRegistration deposit in lovelace
drep_verification_key_fileYesPath to DRep verification key file

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=false, idempotentHint=true, destructiveHint=false and openWorldHint=false, so the safety profile is covered. The description adds nothing beyond that: it does not say the certificate is only written to a file and still needs to be wrapped in a transaction, nor what the output artifact looks like.

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 purpose sentence is properly front-loaded, but the following args list duplicates all five parameters that the schema already documents completely, adding length without information. Half the text is redundant.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no output schema, the description omits what file is produced, how it integrates with transaction_build/transaction_sign, and whether an existing out_file is overwritten. The required-vs-optional anchor pairing is also unaddressed.

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%, and the description simply restates each schema property description verbatim. With the schema fully documented, the baseline of 3 applies — no extra meaning such as deposit-source rules or anchor pairing constraints is added.

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+resource ("Create a DRep registration certificate"), which is enough to distinguish it from the retirement/update certificate siblings that appear in the tool list. However, it never names or contrasts those siblings explicitly, so the differentiation is left implicit.

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 guidance on when to use this versus cardano_governance_drep_update_certificate or the retirement variant, nor any prerequisites (e.g., that a DRep key must first be generated, or where the deposit amount comes from). An agent must infer the whole workflow.

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