Skip to main content
Glama

file_summary

Read-onlyIdempotent

Get an overview of a GEDCOM family-tree file: record counts, originating software, year range, and most common surnames to quickly assess its contents.

Instructions

Overview of a GEDCOM file: record counts, originating software, year range, most common surnames.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fileNoGEDCOM file name (with or without .ged). Optional when only one file exists.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
fileYes
notesYes
sourcesYes
familiesYes
individualsYes
latest_yearNo
top_surnamesYes
earliest_yearNo
source_softwareNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and openWorldHint=false, so the safety profile is covered. The description adds only what the summary contains, but no additional behavioral context such as error handling, file-format constraints, or multiple-file behavior; with annotations present, this is adequate but not rich.

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?

One tight sentence, front-loaded with the tool's purpose and output fields, with no filler or redundancy. Every phrase earns its place.

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

Completeness5/5

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

For a simple read-only summary tool with full schema coverage, clear annotations, and an output schema, the description is complete enough. It tells the agent what the tool provides without needing to restate parameter details or return-value structure already covered by structured fields.

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?

The schema description coverage is 100% for the single optional file parameter, so the schema already documents its meaning and optionality. The description does not add any parameter semantics beyond what the schema provides, making the baseline of 3 appropriate.

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 resource (GEDCOM file) and enumerates what the overview covers: record counts, originating software, year range, and common surnames. This clearly differentiates it from siblings like list_files, get_individual, and search_individuals without needing to open their schemas.

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 when-to-use guidance, exclusions, or alternatives. It does not say when to choose file_summary over list_files or other sibling tools, nor does it mention prerequisites like the file being present.

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