Skip to main content
Glama
jasonko
by jasonko

list_signups

Retrieve sign-up and RSVP posts for a school to track item donations, volunteer slots, and event participation. View each post's title, progress, and author, with pagination support for browsing multiple pages.

Instructions

List sign-up and RSVP posts for a school (item donations, volunteer slots, event RSVPs).

Shows each signup post with its title, progress (e.g. "53/103 Items"), and author. Use get_post with the feed_id to see full signup details including individual items.

Args: school_id: School ID page: Page number for pagination (default: 1)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
school_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the disclosure burden. It reveals that the tool returns summaries with title, progress, and author, illustrates the progress format, and notes that detailed items require get_post. It omits auth or pagination-depth caveats, but these are minor for a read-only listing with an output schema.

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?

The description is front-loaded with the core purpose, then provides a compact output summary, a useful cross-reference, and a short Args block. It is efficiently sized, though the Args section somewhat duplicates the input schema.

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?

For a two-parameter list tool, the description plus schema covers the required school_id, optional page, the fields returned, and the follow-up path to get_post. The presence of an output schema covers return shape, so an agent has enough to call it correctly.

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 0%, so the description must compensate. It restates school_id as 'School ID' and page as 'Page number for pagination (default: 1)', adding the default but little else. It does not explain page size, response ordering, or how school_id relates to feeds, so it only partially compensates for the absent schema descriptions.

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 states a specific verb and resource: 'List sign-up and RSVP posts for a school', with concrete examples such as item donations, volunteer slots, and event RSVPs. This clearly separates it from sibling list tools like list_links or list_notices and from get_post.

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?

It explicitly directs agents to 'Use get_post with the feed_id to see full signup details including individual items', giving a concrete alternative for deeper detail. It does not, however, enumerate exclusions or compare against other list_* siblings, so it stops short of full routing guidance.

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