Skip to main content
Glama

remove_individual

Destructive

Delete an individual and all references to them from a GEDCOM file, automatically removing any families left with no members so the tree stays consistent.

Instructions

Delete an individual and all references to them. Families left with no members are removed too.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesRecord id such as @I12@
fileNoGEDCOM file name (with or without .ged). Optional when only one file exists.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoId of the record created or modified
fileYes
backupNoPath of the .bak written before saving
messageYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false, so the safety profile is covered. The description adds genuinely new behavioral context: deletion cascades to all references and orphaned families are removed as well, which is collateral damage an agent must know before calling. It stops short of stating irreversibility or confirmation requirements.

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?

Two sentences, zero waste, with the primary action front-loaded and the cascade caveat following immediately. Every sentence earns its place.

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

Completeness4/5

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

An output schema exists, so return values need no explanation, and annotations carry the destructive profile. The description covers the critical cascade side effect, though it omits behavior when the id is not found or which file scope applies when multiple files exist.

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 100%, and both parameters (id with its @I12@ pattern, and the optional file) are fully documented in the schema. The description adds no additional parameter meaning, so the baseline 3 applies.

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

Purpose5/5

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

States a specific verb (Delete) and resource (an individual) and further scopes the operation with cascading behavior ('all references to them'). An agent can distinguish this from add_individual and update_individual immediately without opening a schema.

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?

The purpose implies when to use it (removing a person from the file), but there is no explicit when/when-not guidance and no alternative is named (e.g., update_individual for corrections instead of deletion). Usage is inferable but not spelled out.

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