Skip to main content
Glama

setup_status

Checks profile completeness and returns a questionnaire for missing fields before applying to jobs.

Instructions

Whether the user's profile is complete, and the questions to ask.

Call this before the first application and any time get_profile reports missing fields. If ready is false, ask the user the questions in questionnaire -- all of them in a single message, not one at a time -- then hand the answers back through save_profile.

Every field carries its current value, so a second run only needs to ask about what is still blank. Fields already answered are never re-asked; that is the whole point of the profile being a file.

Prefer save_profile over update_profile for this: it writes the whole set at once and reports validation problems together.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
include_optionalNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/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 discloses that fields carry current values, only blank fields are re-asked, and previously answered fields are never re-asked. It also explains the single-message requirement. While it doesn't explicitly state the tool is read-only, the wording implies it only checks status and returns data. A minor gap is not mentioning error handling or edge cases, but overall it is transparent.

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?

The description is well-structured, front-loaded with purpose, then usage, then behavior. Each sentence adds value, and the guidance is clear. It is slightly verbose but not excessive; the length is justified by the need to convey usage and behavioral nuances.

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?

The description covers the main workflow and output semantics (ready, questionnaire), and an output schema exists. However, it fails to document the only input parameter (include_optional), which is a significant omission. The description also doesn't address what happens when ready is true beyond implying no questions are needed. Overall it's adequate for the core flow but incomplete due to the parameter gap.

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 0% and the description never mentions the include_optional parameter. The agent is left with no information about what this parameter controls or how to use it. With zero schema documentation, the description should compensate, but it doesn't, making this a critical deficiency.

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 tool reports profile completeness and provides a questionnaire. It distinguishes itself from siblings like get_profile by specifying when to use it (before first application or when get_profile reports missing fields). The purpose is specific and actionable.

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?

Explicit guidance is given: call before the first application and any time get_profile reports missing fields. It also instructs how to handle the questionnaire (ask all at once, hand answers via save_profile) and recommends save_profile over update_profile. This is a model of usage clarity.

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