Skip to main content
Glama

get_setlist

Retrieve the setlist for a specified date.

Instructions

Goose setlist for a given date (YYYY-MM-DD).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYes
include_relatedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3/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 burden of behavioral disclosure. It only states what the tool returns conceptually; it does not mention whether the call is read-only, what happens when no show exists for the date, or how include_related affects behavior.

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?

The description is a single, front-loaded sentence with no filler. It efficiently conveys the core purpose and date format in minimal space.

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

Completeness2/5

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

For a tool with no annotations, two parameters, zero schema descriptions, and several sibling tools, this description is too sparse. It covers the required date format but leaves usage boundaries, the optional parameter, and edge-case behavior unaddressed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/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 adds useful date-format guidance (YYYY-MM-DD), but it completely omits include_related, leaving its meaning and effect unexplained.

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?

The description states a clear operation and resource: retrieving a Goose setlist for a specific date. The date-scoped lookup is distinct in spirit from siblings like random_show or latest_show, but it does not explicitly differentiate itself from search_shows or other date-oriented tools.

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

Usage Guidelines3/5

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

The phrase 'for a given date' implies use when an exact date is known, but there is no explicit guidance on when to choose this over search_shows, latest_show, or this_day_in_history. No alternatives or exclusions are named.

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