Skip to main content
Glama

get_education

Fetch a specific education entry by ID to view its details. Use this action to access an individual academic record from the portfolio.

Instructions

Get a specific education entry by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesEducation ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavior disclosure. It implies a read-only operation via 'Get', but does not specify error behavior, return format, or any access requirements. For a simple getter this is minimally adequate but lacks depth.

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?

A single concise sentence that front-loads the core action and resource. No wasted words, but it is sparse and could include a brief usage hint without sacrificing conciseness.

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

Completeness3/5

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

For a simple single-parameter getter, the description is functionally sufficient. However, it could explicitly state that the ID must come from a list operation or mention that only one entry is returned. Lacks any context on output layout, but that is not required without an output schema. Overall adequate with minor gaps.

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 coverage is 100% (the 'id' parameter has a description), so the schema already documents it. The tool description adds no extra semantic detail beyond 'by ID', relying entirely on the schema. Baseline 3 is appropriate.

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 clear verb ('Get') and resource ('specific education entry by ID'), which distinctly identifies the operation. It is unambiguous and distinguishes from list_education, though it does not explicitly name the sibling or contrast with it.

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 list_education or any other sibling. There is no mention of prerequisite steps (e.g., obtaining the ID from a list call) or alternative tools, leaving the agent to infer usage context.

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