Skip to main content
Glama

keywordise

Answer an employer's screening question

answer_screening_question
Destructive

Record the person's answer to one screening question on one application. The answer is written in the person's name and saved to their answer book, so the same question is never asked again. When it is the last required answer, the application is SUBMITTED to the employer. Only give an answer the person actually stated.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
answerYes
question_idYes
application_idYes

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already mark this as destructive and non-read-only. The description goes further by revealing concrete side effects: the answer is saved in the person's name, the same question is never asked again, and if it is the last required answer the application is submitted. This gives the agent meaningful expectations beyond the annotations.

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?

Three dense sentences with no filler. The core action and scope are front-loaded, and the critical constraint 'Only give an answer the person actually stated' is preserved as a clear final warning. Every sentence contributes necessary information.

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

Completeness4/5

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

For a three-parameter mutation tool with no output schema, the description covers what the tool does, its side effects, and a key safety constraint. It does not explain return values or errors, but that is less critical given the simple shape and the strong behavioral warnings already present.

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 description coverage is 0%, so the description carries the burden of explaining parameters. It maps application_id to 'one application,' question_id to 'one screening question,' and answer to the person's actual stated answer, adding semantic meaning. It does not describe ID formats or origin, but the domain mapping is sufficient for a simple tool.

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 states a specific verb ('Record'), a specific resource (one screening question on one application), and the unusual scope: the answer is written in the person's name and saved to their answer book. It also distinguishes itself from generic save/answer tools by noting that the question is never asked again and that completing the last required answer submits the application.

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?

The description conveys a clear context—answering a screening question on a specific application—and includes an important constraint: 'Only give an answer the person actually stated.' However, it does not explicitly name or contrast alternatives like save_answer, so an agent must infer when to use this tool versus a sibling.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation4/5

Tool purposes are generally distinct and well-described, but a few clusters overlap in function: answer_screening_question vs save_answer both write to the answer book, get_my_profile vs get_account both report plan status, and the CV preview/sent-CV/base-CV tools could be confused. The detailed descriptions mitigate most misselection, so this is only a minor issue.

Naming Consistency4/5

The set almost uniformly uses snake_case verb_noun names like list_, get_, update_, create_, delete_, and start_/stop_. Minor deviations such as login, describe_what_i_want, and the get_my_* vs list_* alternation prevent a perfect score, but the overall pattern is predictable and readable.

Tool Count2/5

49 tools is far above the 25+ threshold and will burden agent tool selection even though many are legitimate single-purpose operations. Several groups could be consolidated—billing links, API-key management, and the CV PDF family—without hurting clarity.

Completeness4/5

The surface covers the full lifecycle: account creation/auth, profile and CV, targeting, matching, apply runs, screening answers, tracking, billing, export, and deletion. Minor gaps remain, such as no application-level detail/withdrawal endpoint and no direct way to save a parsed CV without re-uploading, but agents can work around them.

Resources