Skip to main content
Glama
ilyautov

hh-mcp-ru

hh_write_raw

Write to any HeadHunter API endpoint with POST, PUT, or PATCH, even for unlisted paths. Confirm write operations with a required flag to execute safely.

Instructions

Create or update data at ANY path, including paths not in the catalog.

Target API: https://api.hh.ru/openapi/specification/public.

POST, PUT and PATCH only; requires confirm_write=true.

Args: method: POST, PUT or PATCH. path: full path beginning with '/'. host: host override; defaults to the service's default host. query: query-string parameters. body: JSON request body. confirm_write: must be true. Returns JSON: {"ok": true, "status", "data"} or the error envelope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
hostNo
pathYes
queryNo
methodYes
confirm_writeNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.0

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false and destructiveHint=false, so the basic safety profile is known. The description adds value by requiring confirm_write=true, which indicates a deliberate confirmation mechanism for writes, and it mentions the return envelope. It does not disclose potential side effects or failure modes beyond the error envelope, but it does not contradict annotations.

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 front-loaded with the core purpose in the first sentence, followed by concise details. The Args list is necessary because the schema lacks descriptions, and it is structured and readable. It is not overly verbose; every sentence contributes, though the list makes it slightly longer than a purely minimal description.

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?

Given 6 parameters, no schema descriptions, but an existing output schema, the description covers all essential information: method, path format, host, query, body, confirm flag, and the return JSON shape. It also points to the target OpenAPI spec. It does not elaborate on error handling beyond 'error envelope', but the output schema already provides that structure, so overall completeness is high.

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?

With schema description coverage at 0%, the description fully compensates by listing each parameter with meaningful constraints: method is restricted to POST/PUT/PATCH, path must be a full path beginning with '/', host and query are optional overrides, body is JSON, and confirm_write must be true. This goes far beyond the bare schema types and gives clear behavioral requirements.

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 opens with 'Create or update data at ANY path, including paths not in the catalog.' This is a specific verb (create/update), a clear resource (data at any path), and it distinguishes itself from catalog-scoped tools by explicitly covering non-catalog paths, which differentiates it from siblings like hh_write_method.

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

Usage Guidelines4/5

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

The description provides clear context: it states acceptable HTTP methods (POST, PUT, PATCH), requires confirm_write=true, and specifies the path must begin with '/'. While it does not explicitly name alternatives or exclusion cases, the 'any path' scope implies it is the general write tool, giving sufficient context for when to use it.

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