Skip to main content
Glama

update_education

Update an existing education record by its ID. Modify details such as degree, institution, dates, descriptions, and related skills with write access.

Instructions

Update an existing education entry by ID. Requires write permission.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesEducation ID
gradeNo
degreeNo
end_dateNo
body_htmlNo
skill_idsNo
is_currentNo
start_dateNo
descriptionNo
institutionNo
project_idsNo
field_of_studyNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It discloses the write-permission requirement, which is useful, but omits other key behaviors such as failure on missing ID, partial-update semantics, return value, or whether all fields are optional once ID is supplied. This is a clear gap but not a contradiction.

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 with no fluff: first states the primary action and target, second discloses a permission prerequisite. Every word contributes; the essential purpose is front-loaded.

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

Completeness1/5

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

For a 12-parameter mutation tool with no annotations and no output schema, the description is severely incomplete. It provides no information on parameter semantics, behavior on partial updates, error handling, or return values, so the agent cannot confidently construct or interpret a correct call.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 8% (just 'id'), yet the description adds no meaning for the other 11 parameters. An agent cannot infer what 'grade', 'body_html', 'skill_ids', or 'project_ids' represent or how they are updated from either the schema or the description.

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 verb ('Update'), resource ('education entry'), and targeting mechanism ('by ID'), which clearly distinguishes it from create/delete/get siblings. It does not explicitly name alternatives but the scope is obvious from the phrasing.

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 on when to use this tool versus alternatives, no exclusions or conditions beyond 'Requires write permission.' The name implies it, but the description does not state when to prefer it over create_education or mention related tools.

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