Skip to main content
Glama

incident_flow

DORA incident lifecycle: log, classify, notify (BaFin), close. Each step creates signed evidence.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNo
actionNolog | classify | notify | close
severityNo
entity_idNoEntity ID
root_causeNo
descriptionNo
incident_idNo
report_typeNo
classificationNo
lessons_learnedNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden for behavioral disclosure. It states that each step creates signed evidence, which is a useful side-effect hint, but it does not disclose whether the tool mutates data, sends external notifications (implied by 'notify (BaFin)'), requires special permissions, or how steps interact. This is insufficient for a tool with no annotation safety profile.

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?

The description is a single, tightly packed sentence with no filler. It front-loads the core concept (DORA incident lifecycle) and immediately lists the actions and a key side effect (signed evidence). Every phrase contributes meaningful information.

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?

Given the complexity (10 parameters, no required fields, no output schema, no annotations), the description is too minimal. It provides an overview but omits details about step-specific parameter requirements, the meaning of report_type or classification, the flow constraints, and the nature of the signed evidence output. An agent cannot reliably invoke this tool for all steps based solely on this description.

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 only 20% (only action and entity_id have descriptions). The description maps action values to lifecycle steps, which adds meaning to the central parameter, but it does not specify which of the other nine parameters are needed for each step, their formats, or their precedence. This leaves major ambiguity for a 10-parameter tool with no required fields.

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 identifies the tool as a DORA incident lifecycle with a clear set of actions (log, classify, notify, close). This conveys its purpose as managing incident steps, and the mention of BaFin notification and signed evidence distinguishes it from sibling tools like audit_trail or bafin_report_draft. However, it lacks an explicit verb like 'manage' or 'perform', making it slightly less direct.

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 provided on when to use this tool versus alternatives. The description does not mention preconditions, ordering constraints, or when to choose this over sibling tools like bafin_approve_send or audit_trail. The workflow list implies usage but does not state it explicitly.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.1/5.0
Disambiguation3/5

Several tools overlap in purpose, particularly contract analysis (check_contract, contract_analyze, llm_clause_check) which could confuse agents. Assessment-related tools (readiness_check, assess_all, article_status) also have partially overlapping functionality. However, most tools have distinct resources and actions with detailed descriptions.

Naming Consistency4/5

Tool names are consistently snake_case and mostly follow a verb_noun pattern (e.g., create_entity, generate_report, register_provider). Minor deviations like contract_analyze and llm_clause_check invert the verb-noun order, but the overall pattern is predictable.

Tool Count2/5

50 tools is a very large surface for a single server, exceeding the threshold for 'too many' tools. While the DORA domain is broad, this breadth makes it challenging for agents to navigate and select the right tool efficiently.

Completeness4/5

The tool set covers the full DORA compliance lifecycle: entity onboarding, contract analysis, provider management, assessments, evidence, reporting, and incident workflows. Simulation and cross-regulation tools add depth. Minor missing CRUD operations (e.g., update/delete entity) but agents can work around.

Resources