Skip to main content
Glama
AndreyTepaykin

hh-mcp

list_hidden_vacancies

List hidden job postings for a specific employer by ID. Access unpublished vacancies not visible on hh.ru to review non-public hiring.

Instructions

List hidden vacancies for an employer. Requires HH_ACCESS_TOKEN.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rawNoReturn the full raw hh.ru JSON instead of the compact summary.
pageNoPage number (0-based)
per_pageNoResults per page
employer_idYesEmployer ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.2.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It adds the meaningful precondition that HH_ACCESS_TOKEN is required, which is useful beyond the schema. However, it does not disclose the response shape, pagination behavior, or what 'hidden' means in API terms.

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 two short sentences with no redundant filler. The core action is front-loaded and the token requirement is stated efficiently.

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 paginated list operation with fully documented parameters, the description is minimally adequate. Still, it lacks an output-format note, any guidance on when hidden vacancies are relevant, and does not differentiate from similar sibling tools, leaving some contextual gaps.

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%, so the input schema fully documents employer_id, raw, page, and per_page. The description adds no extra parameter semantics, but since the schema already covers this, the baseline score applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'List hidden vacancies for an employer.' This cleanly identifies the operation. It does not explicitly contrast itself with sibling tools like list_archived_vacancies or get_employer_vacancies, but 'hidden vacancies' is a distinct enough scope.

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

Usage Guidelines2/5

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

The only usage guidance is 'Requires HH_ACCESS_TOKEN,' which is an authentication prerequisite rather than guidance about when to choose this tool over alternatives. No exclusions or comparisons to sibling vacancy-listing tools are provided.

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