Skip to main content
Glama

get_proposals

Read-only

Retrieve proposals for a specific Geo space, sorted by creation time with newest first. Supports pagination to browse results.

Instructions

List proposals for a specific space, ordered by creation time (newest first).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
firstNoMax results (default 20)
offsetNoOffset for pagination (default 0)
spaceIdYesSpace ID (dashless hex)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.8.0

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds useful ordering behavior (newest first), which is beyond what annotations provide, but otherwise discloses little about pagination behavior or response structure.

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?

A single sentence that is direct, front-loaded, and free of redundancy. Every word contributes to understanding the tool's core behavior and ordering guarantee.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only list tool, the description plus fully documented schema and readOnlyHint provide everything an agent needs to invoke it correctly. No critical information is missing.

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 parameters are already well documented. The description adds no additional parameter-level meaning beyond reinforcing that spaceId scopes the listing, which is sufficient given the schema's completeness.

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 uses a specific verb ('List') with a clear resource ('proposals') and scope ('for a specific space'), and adds ordering behavior ('newest first'). It clearly differentiates from the singular sibling get_proposal, which retrieves one proposal rather than a list.

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?

The description conveys when to use the tool: when listing proposals for a specific space. It does not explicitly contrast it with siblings like get_proposal or get_proposal_votes, but the context is clear enough that an agent can infer the appropriate use case.

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