Skip to main content
Glama

rustchain_bounties

Get open bounty information from RustChain and filter by status (open, closed, or all).

Instructions

Get open bounty information from RustChain

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNoFilter by status: open, closed, all (default: open)

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?

With no annotations, the description carries the full behavioral burden. 'Get' implies a read-only fetch, but nothing is said about authentication, pagination, rate limits, or the shape of returned bounty data, which are material for an agent deciding how to call it.

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 no filler, which is appropriately tight for a one-parameter lookup tool. It is terse to the point of under-specification, but nothing in it is wasted.

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 one-optional-parameter read tool with full schema coverage and no output schema, the description is minimally adequate. It leaves the open/closed/all flexibility implied by the schema unexplained and offers no behavioral context, so it is viable but thin.

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 the status parameter and its open/closed/all semantics are already fully documented in the schema. The description adds no syntax or default details beyond what the schema provides, so the baseline of 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 clear verb (Get) and resource (bounty information) scoped to RustChain, which distinguishes it from siblings like rustchain_balance, rustchain_miners, and rustchain_ledger. The only blemish is that it says 'open' while the schema exposes closed/all filters, so the stated scope is narrower than the tool's actual capability.

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 when-to-use, when-not-to-use, or alternative routing guidance. The description gives no condition that would tell an agent to prefer this over rustchain_ledger or rustchain_health; usage is only implied by the word 'bounty'.

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