Skip to main content
Glama

rustchain_miners

Retrieve a list of active miners on the RustChain network, with an optional limit to control how many results are returned.

Instructions

Get list of active miners on the network

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of miners to return (default: 10)

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?

No annotations are provided, so the description carries the full behavioral burden. It only conveys that the list is scoped to 'active' miners; it says nothing about ordering, pagination beyond the limit param, or auth requirements. For a read-only list tool this is thin but not misleading.

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?

A single front-loaded sentence with zero filler. Appropriately sized for the tool's simplicity, though it is so brief that it omits useful detail.

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 simple list tool with one optional param, no annotations, and no output schema, the description is minimally viable. It omits what a miner record contains and whether results are ordered or capped, which an agent would benefit from knowing.

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 single optional 'limit' parameter is fully documented in the schema (including its default of 10). The description adds no meaning beyond that, so the 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 ('Get list of') and resource ('active miners on the network'), which is clearly distinct from the balance/epoch/health/transfer/ledger/bounties siblings. It doesn't explicitly name a sibling for differentiation, but the resource is unambiguous enough that an agent can place it.

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 the other rustchain_* tools, no prerequisites, and no exclusions. The statement is purely descriptive of what it returns.

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