Skip to main content
Glama

list_events

Retrieve event schedules from cuebit, filtered by tag or start date range, to support planning and automation.

Instructions

List all events, optionally filtered by tag or date range.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNoFilter by tag (optional)
afterNoISO 8601 date — only events starting after this (optional)
beforeNoISO 8601 date — only events starting before this (optional)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It correctly communicates that this is a read-only listing operation and that filters are optional, but it does not disclose ordering, pagination, exact match vs substring semantics, or whether date bounds are inclusive.

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 with no filler. The primary action and resource come first, and the optional filtering behavior is stated compactly without redundancy.

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 simple read-only list tool with no required parameters and no nested objects, the description is sufficient for an agent to understand its basic behavior. Minor gaps like pagination and ordering are relevant but not blocking given the tool's low complexity.

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 already provides 100% coverage with descriptions for tag, after, and before. The description's mention of 'tag or date range' adds no new semantic detail beyond the schema, so the baseline of 3 applies.

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?

States the specific verb 'list', the resource 'events', and the optional filters (tag or date range). This clearly distinguishes it from get_event (single event) and create/update/delete_event (mutations).

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 description implies the tool is for retrieving multiple events, and the optional filtering suggests when parameterization is useful. However, it does not explicitly contrast with get_event for fetching a single event or mention any when-not-to-use conditions.

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