Skip to main content
Glama

Get Stake Pool ID

cardano_stake_pool_id
Read-onlyIdempotent

Derive a Cardano stake pool ID from a cold verification key file, returning the pool ID as a bech32 string for pool registration and staking operations.

Instructions

Get the pool ID from a cold verification key.

Args:

  • cold_verification_key_file (string): Path to the cold verification key file

Returns: The pool ID as bech32 string.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cold_verification_key_fileYesPath to the cold verification key file

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false. The description adds useful output context by stating the return value is a bech32 pool ID string, which is valuable because there is no output schema.

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 description is short and front-loads the action. The Args section duplicates the schema, which is mildly redundant, but overall it is efficient and well-structured.

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 one-parameter read-only utility, the description covers the operation, the input, and the return type. It does not describe error behavior or file-format assumptions, but those are minor gaps given the rich annotations and complete schema.

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 coverage is 100%, and the sole parameter is already fully documented in the input schema. The description repeats the same file-path meaning without adding format, validation, or sourcing details beyond the schema.

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: get the pool ID from a cold verification key. This is clear and actionable, but it does not distinguish itself from the many sibling stake-pool and key tools.

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 explains what the tool does but gives no explicit guidance on when to use it versus alternatives. It does not mention prerequisites, when-not conditions, or sibling tools such as cardano_stake_pool_key_gen.

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