Skip to main content
Glama

platform_get_pending_validators

Get the pending validators of a Subnet/L1 (paginated; use limit/offset)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax items to return (default: 50). Use with "offset" to page.
offsetNoNumber of items to skip from the start (default: 0).
networkNoAvalanche network to query (default: mainnet)
nodeIDsNoOptional list of node IDs to filter by
subnetIDNoThe Subnet ID to query pending validators for (default: Primary Network)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / subnetID / description
      Previous value: -"The subnet ID to query pending validators for (default: Primary Network)"New value: +"The Subnet ID to query pending validators for (default: Primary Network)"
  2. Changed2 schema fields changed
    • addedInput schema / properties / limit
      Added value: +{
      +  "description": "Max items to return (default: 50). Use with \"offset\" to page.",
      +  "maximum": 200,
      +  "minimum": 1,
      +  "type": "number"
      +}
    • addedInput schema / properties / offset
      Added value: +{
      +  "description": "Number of items to skip from the start (default: 0).",
      +  "minimum": 0,
      +  "type": "number"
      +}
  3. Added

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are present, so the description carries the full burden. It does mention pagination ('paginated; use limit/offset'), which is a useful behavioral trait, but it does not disclose other behaviors such as return format, sorting, default subnet behavior, or any potential side effects (though as a 'get' operation, it is likely read-only). The disclosure is minimal but not absent.

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

Conciseness5/5

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

The description is a single, front-loaded sentence: 'Get the pending validators of a Subnet/L1 (paginated; use limit/offset)'. Every word contributes meaning, with no redundancy or fluff. It is highly concise 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?

Considering the tool has 5 optional parameters, no annotations, and no output schema, the description adequately covers the core purpose and mentions pagination. It does not explain the concept of 'pending validators' or explicitly state that the result is a list, but the tool name and sibling context make this fairly obvious. For a simple getter, this is reasonably complete.

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?

The input schema has 100% description coverage for all five parameters. The description adds a brief instruction to use limit/offset for pagination, but this information is already clearly embedded in the schema's parameter descriptions. Thus, the description adds marginal value beyond the schema, matching the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves pending validators for a Subnet/L1, using a specific verb ('Get') and a precise resource ('pending validators'). It distinguishes itself from sibling tools like platform_get_current_validators by explicitly focusing on 'pending' validators.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage through the word 'pending', but it does not explicitly mention when to use this tool versus alternatives like platform_get_current_validators. No direct exclusions or alternative references are provided, making the guidance only implicit.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.