Skip to main content
Glama

legal_privacy_incident_response_loop

Destructive

Run a structured privacy incident response workflow for legal teams, guiding breach assessment, notification, and remediation steps.

Instructions

Run the legal domain agent action privacy_incident_response_loop.

Routes through the platform's domain-agent dispatcher under your JWT, tenant, and company scope.

Args: message: Free-text objective for the action. inputs: Optional JSON string of structured inputs for the action.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputsNo{}
messageNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.6/5.0
Behavior3/5

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

Annotations already carry the safety profile (destructiveHint=true, readOnlyHint=false, idempotentHint=false), so the bar is lower. The description adds genuine execution context — that it routes through the platform's domain-agent dispatcher under the caller's JWT, tenant, and company scope — but it never discloses what the loop does to the environment, how long it runs, or what side effects the caller should expect from a destructive loop.

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 compact and well-organized: one purpose line, one routing line, and an Args section that adds semantics beyond the schema. The action name is front-loaded and there is no filler or repetition of schema type 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?

For a destructive, non-idempotent loop action, the description omits what the loop does, what inputs it consumes, and what outcome it produces. The output schema covers return shape, but the missing domain workflow, missing input format guidance, and missing sibling differentiation make this incomplete for safe selection and invocation.

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 must compensate, and it partially does: 'message' is clarified as a free-text objective and 'inputs' as an optional JSON string. However, it never explains what kind of message or structured inputs a privacy incident response loop expects (e.g., incident details, affected data subjects, jurisdiction), leaving correct invocation to guesswork.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The core sentence 'Run the legal domain agent action `privacy_incident_response_loop`' is essentially a tautology — it restates the tool name as the action name without explaining what a privacy incident response loop actually does. The routing sentence ('Routes through the platform's domain-agent dispatcher under your JWT, tenant, and company scope') describes mechanism, not domain purpose, and there is no differentiation from closely-related siblings like legal_breach_response or legal_dsar_fulfill.

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 on when to invoke this tool versus alternatives such as legal_breach_response, legal_dsar_intake, legal_dpia, or it_ops_incident_response. The only contextual clue is the JWT/tenant/company scope routing, but there are no triggers, prerequisites, exclusions, or condition-based selection cues.

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