Skip to main content
Glama

proposal_list

Fetch public proposal rows from Splinterlands governance with pagination, filtering, and sorting. Use it to retrieve proposal data for analysis or display.

Instructions

Read public proposal rows. limit=2 with offsets 0 and 2 returned distinct pages which concatenated exactly to limit=4,offset=0 in the capture. Each call fetches one page only; vote weights and thresholds remain decimal strings. Other filters are forwarded as supplied. Makes one logical GET request and does not auto-fetch continuation pages. Required inputs reflect tool policy as well as measured upstream requirements. Other declared filters are forwarded as supplied; their effectiveness is not implied by the schema. Array responses are locally limited to 100 rows and 256 KiB, with truncation reported in text and metadata. Oversized records are refused without partial fields.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
filterNo
offsetNo
playerNo
sort_byNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0

TDQS

A3.9/5.0
Behavior5/5

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

With no annotations, the description carries the full burden of behavioral disclosureched. It discloses pagination semantics, size limits (100 rows, 256 KiB), truncation reporting, refusal of oversized records, preservation of decimal strings as strings, and single-GET request behavior, which is exceptionally thorough.

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

Conciseness3/5

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

The purpose is front-loaded, but the description is wordy and contains redundancy: "Other filters are forwarded as supplied" appears twice. The detailed "limit=2 with offsets 0 and 2" capture observation is more specific than generally useful, making the text longer than necessary.

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 tool with no output schema and no annotations, the description covers pagination, size limits, truncation, and filter forwarding, but it misses individual parameter definitions and the shape of returned rows. The provided behaviors are useful, yet the description is not fully complete for an agent to use the tool with full confidence.

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 0% description coverage, so the tool description must compensate. It gives concrete meaning to limit and offset via the pagination example and states that other filters are forwarded as supplied, but it does not explain what filter, player, or sort_by individually mean. This is partial, not full, compensation.

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?

"Read public proposal rows" is a specific verb and resource, and the name proposal_list clearly signals a listing operation. It does not explicitly distinguish itself from proposal_pending_count and proposal_votes, though the resource and verb make the intent clear.

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

Usage Guidelines4/5

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

Provides clear context on pagination behavior ("Each call fetches one page only", "does not auto-fetch continuation pages") and filter forwarding. However, it never explicitly tells an agent when to choose this tool over similar siblings, so it stops short of a 5.

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