Skip to main content
Glama

get_events

Fetch game events since your last read, including job completions, character attacks or deaths, finished research, and duty supply warnings, to stay informed of critical occurrences.

Instructions

Events since your last read (or since since_id): your jobs finishing or failing, your character attacked or killed, research finished, supply warnings of duties.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
since_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits on its own. It mentions events 'since your last read,' which implies the tool tracks read state, but it does not explicitly state whether calling this tool updates that state or has other side effects. This is a meaningful gap.

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 a single sentence that front-loads the core purpose ('Events since your last read') and gives helpful examples. The parenthetical 'or since since_id' is slightly redundant but not wasteful. Overall it is concise and well-structured.

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

Completeness3/5

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

The tool is simple (one optional parameter) and has an output schema, so the description does not need to explain return values. However, it omits the critical behavioral detail about whether the 'last read' marker is updated, and it does not mention event ordering or pagination. For a tool with no annotations, this leaves the agent uncertain about side effects.

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 carries the burden of explaining since_id. It does explain that the parameter overrides the 'last read' baseline, providing some meaning beyond the schema. However, it does not clarify inclusivity/exclusivity of the ID or how to obtain a valid ID.

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 clearly states the tool retrieves events (jobs finishing/failing, combat, research, supply warnings) since a specified ID or last read. It identifies the resource and verb distinctly, but does not explicitly distinguish it from sibling tools like wait_for_events.

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?

The description gives no guidance on when to use this tool versus alternatives such as wait_for_events or status. It implies polling for events but does not state when this is appropriate or what the trade-offs are.

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