Skip to main content
Glama

get_answer

Retrieve a previously stored answer to an application form question, using the returned confidence status to decide whether to use it directly, confirm with the user, or ask and record a new answer.

Instructions

Look up a previously learned answer to an application question.

Call this for every question on a form before deciding to ask the user. When it answers, use the value as-is -- it is a stored fact, and paraphrasing it risks putting a wrong answer on a real application.

status meanings:

  • "answered" -- confident match; use answer directly

  • "suggestion" -- plausible but not yet proven; confirm with the user

  • "need_human" -- nothing usable stored; ask the user, then call record_answer so the next run does not have to

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
questionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden. It thoroughly discloses the behavioral outcomes of each status (answered, suggestion, need_human) and warns against paraphrasing, giving a complete picture of what the tool does and its implications.

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?

The description is well-structured, starting with a clear purpose, then a usage directive, and a bulleted list of status meanings. Every sentence contributes to the agent's understanding without unnecessary verbosity.

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?

Given the tool's simplicity (one parameter) and the presence of an output schema (not shown but implied), the description covers all necessary aspects: what it does, when to use it, how to interpret results, and subsequent actions. It is complete for an agent to use correctly.

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

Parameters4/5

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

Schema coverage is 0%, so the description must compensate. It clarifies that the 'question' parameter is the application question to look up, but doesn't provide examples or format details. Still, for a single simple string parameter, this is adequate and adds meaning beyond the raw schema.

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?

The description clearly states the verb 'look up' and the resource 'previously learned answer to an application question'. It distinguishes itself from siblings like 'record_answer' (which stores) by implying a retrieval action, making the tool's purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to call this tool for every question before asking the user, and details the conditional actions for each status. It also indirectly routes to 'record_answer' when needed, providing clear when-to-use and when-not-to-use guidance.

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