list_facets
List all available filter values (dates, themes, audiences, formats, neighborhoods) with counts. Call this first if the user's question is open-ended.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List all available filter values (dates, themes, audiences, formats, neighborhoods) with counts. Call this first if the user's question is open-ended.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals that the tool returns available filter values along with counts, which is the core behavior. However, it does not explicitly state a read-only nature or other side-effect information, though the verb 'list' implies it.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, consisting of two sentences that are front-loaded with the core action and followed by a practical usage hint. Every sentence provides value, and there is no redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no parameters and no output schema, the description covers all essential aspects: what it lists, the categories included, that counts are provided, and when to invoke it. It is sufficiently complete for an agent to decide on and use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline score is 4. The description does not need to explain parameters, and it adds no parameter-specific information beyond what the empty schema already communicates.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'List all available filter values (dates, themes, audiences, formats, neighborhoods) with counts.' It uses a specific verb ('List'), identifies the resource (filter values), and lists the categories, making it easily distinguishable from the sibling tools get_event and search_events.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage guidance: 'Call this first if the user's question is open-ended.' This tells the agent when to use the tool, but does not explicitly name alternatives or state when not to use it. It implies a sequencing strategy rather than fully specifying alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.