Skip to main content
Glama
satovarb16
by satovarb16

get_resume_version

Fetch a stored resume version by its exact id, or pass "latest" to get the most recently created one. Returns the version or a not_found/corrupt error.

Instructions

Retrieve a single resume version by id, or the most recent via "latest".

This tool NEVER raises.

Args: id: Exact version id, or the literal string "latest" for the most recently created version in the store.

Returns: GetResumeVersionResult with success=True and version on success; success=False with error="not_found" or error="corrupt".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNo
messageNo
successYes
versionNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.1

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the burden and does disclose meaningful behavior: it 'NEVER raises' and enumerates failure modes (error="not_found" or "corrupt"). It omits auth/permission requirements and any rate-limit or store-scope caveats, so it is strong but not exhaustive.

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?

Front-loaded with the core action in the first sentence, followed by terse Args/Returns blocks; every line adds information and there is no filler.

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?

An output schema exists, so the Returns block is supplementary rather than required, and its error enumeration plus the never-raises guarantee give the agent everything needed to call and interpret results for a one-parameter lookup.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate, and it does: it defines id as either an exact version id or the magic literal "latest" for the most recently created version in the store. That is precisely the semantic an agent cannot infer from a bare string parameter.

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 (Retrieve) and resource (a single resume version) with clear scope, and the word 'single' implicitly distinguishes it from the sibling list_resume_versions. An agent can identify the operation without opening the 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?

It explains the two modes of use (exact id vs the literal "latest") which helps an agent pick the right argument, but never states when to prefer this over list_resume_versions or get_job, nor any prerequisites for calling it.

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