Skip to main content
Glama

list_events

Get campaign events by passing the campaign ID. Use the optional page parameter to paginate through results for large event lists.

Instructions

List events

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
campaignIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.1.1

TDQS

C2.4/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. Saying 'List events' only indicates a read operation; it does not disclose pagination behavior, campaign scoping, limits, ordering, or return format.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

At two words, the description is terse, but this is under-specification rather than effective conciseness. It omits essential context and front-loads nothing useful beyond the tool name.

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 list tool with two parameters, no output schema, and no annotations, the description is incomplete. It does not explain the required campaignId, the pagination option, or what an agent should expect from the response.

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

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description adds no meaning for the two parameters. The required campaignId and optional page are not explained or even mentioned, leaving the agent without semantic guidance beyond raw schema properties.

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 uses a clear verb and resource, 'List events', which identifies the operation and distinguishes it from sibling tools like list_campaigns or get_event. However, it fails to mention that events are apparently scoped to a required campaignId, so the stated purpose is incomplete.

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

Usage Guidelines2/5

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

No guidance is given for when to use this tool versus alternatives such as get_event or list_campaigns. There is no mention of when campaign filtering applies or when a different list tool is appropriate.

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