Skip to main content
Glama

incident_reported

Log an incident report event with reporter, recipient, and timestamp, and close the incident for subsequent reports.

Instructions

Record that incident seq was reported (Art. 73, Art. 26(5)): to whom and when. A later entry that names the incident; incident_report and oversight_report treat it as closed from then on.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
seqYes
noteNo
actorYes
reported_toYes
reported_tsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.39.0

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It does disclose an important behavioral consequence — later incident_report/oversight_report entries treat the incident as closed — but it does not explain idempotency, permissions, or whether a report can be recorded more than once.

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 short and front-loads the core action with the legal references. The second sentence is a fragment but adds meaningful lifecycle context without redundancy.

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 write-like lifecycle tool with no annotations and no output schema, this is under-specified. It omits prerequisites (does seq need to exist?), the meaning of actor/note, and any return or error behavior, despite being surrounded by many similar lifecycle tools.

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 clarifies seq and maps 'to whom and when' to reported_to/reported_ts, but it does not clarify required actor or optional note, leaving callers to guess their meaning.

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 specific action — record that an incident was reported — and references the exact seq plus legal articles, so a caller knows what the tool accomplishes. It references incident_report and oversight_report as related lifecycle tools, which helps differentiate it from them, though the second sentence is somewhat garbled.

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?

It implies this tool is for the initial reporting event and that later reports will treat the incident as closed, giving lifecycle context. It never explicitly states when to prefer this tool over siblings such as record_incident or incident_report.

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

Deploy Server

Other Tools