Skip to main content
Glama

Generate VRF Key Pair

cardano_stake_pool_vrf_key_gen

Generate a Cardano stake pool VRF key pair, writing the verification key and signing key to the specified output paths.

Instructions

Generate a VRF (Verifiable Random Function) key pair for a stake pool.

Args:

  • verification_key_file (string): Output path for the VRF verification key

  • signing_key_file (string): Output path for the VRF signing key

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
signing_key_fileYesOutput path for the VRF signing key
verification_key_fileYesOutput path for the VRF verification key

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 state readOnlyHint=false, idempotentHint=false, destructiveHint=false and closed-world scope, so safety is partly covered. The description adds no behavioral context of its own — notably it does not say whether existing files at the given paths are overwritten, which is the main risk for a non-idempotent key-generation tool that writes to disk.

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?

The purpose sentence is front-loaded and tight. The Args list duplicates the schema's parameter descriptions, which is mild redundancy, but the overall definition is short and readable.

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?

For a two-file-output generation tool with no output schema, the description covers the action and file destinations but omits key context: how it relates to the node VRF key generator, whether target files must not already exist, and what the caller gets back. Adequate but with clear 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 both parameters are already fully documented in the schema. The description merely restates the same two parameter descriptions verbatim ('Output path for the ... key'), adding no format, path, or overwrite semantics beyond the structured data. Baseline 3 applies.

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 and resource ('Generate a VRF key pair') and scopes it to a stake pool, so the core action is unambiguous. However, it does not differentiate itself from the closely related sibling cardano_node_key_gen_vrf, which also generates a VRF key pair, leaving the agent to guess which context applies.

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 stake-pool VRF generator versus cardano_node_key_gen_vrf or the other stake-pool key generators (cardano_stake_pool_key_gen, cardano_stake_pool_kes_key_gen). The description gives no preconditions or workflow context such as when in pool setup this should be run.

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