Skip to main content
Glama
AndreyTepaykin

hh-mcp

list_mail_templates

Retrieve mail templates for a specific employer ID to review or select pre-defined messages for candidate communication.

Instructions

List employer mail templates. Requires employer_id and HH_ACCESS_TOKEN.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rawNoReturn the full raw hh.ru JSON instead of the compact summary.
employer_idYesEmployer ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.2.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral disclosure burden. It explicitly mentions the HH_ACCESS_TOKEN requirement and 'List' makes the read-only nature apparent, but it does not cover pagination, response shape, or list-specific quirks.

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 two short sentences with no filler, and the core action is front-loaded. It wastes no words, though it is so brief that it omits useful usage context.

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 list tool this is minimally adequate: the description plus schema covers the required employer_id and the raw-output option. There is no output schema, and the description does not mention pagination or what the returned templates contain, leaving a modest completeness gap.

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 description coverage is 100%: employer_id and raw are already documented in the input schema, so the description adds no new parameter-level meaning. The baseline of 3 applies.

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 names a specific verb and resource ('List employer mail templates'), which clearly conveys the operation and the employer scoping. This distinguishes it from sibling tools like get_message_template, which is aimed at a single template.

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 intended use is implied: list all mail templates for an employer, given employer_id and access token. However, it does not explicitly state when to choose this over alternatives such as get_message_template or any exclusions, so usage guidance is only implicit.

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