Skip to main content
Glama
Pavelsiba

yandex-direct-mcp-plus

by Pavelsiba

Задать расписание показов

set_time_targeting
Idempotent

Sets a Yandex.Direct campaign's ad schedule by days, hours, bid adjustments, holidays, and time zone. The full schedule is replaced; uncovered hours receive no impressions.

Instructions

Задать расписание показов кампании: дни, часы, почасовые коэффициенты, праздники и часовой пояс. ⚠️ Расписание заменяется целиком: часы вне переданных правил показов не получат.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
scheduleYesПравила показов. Часы, не покрытые ни одним правилом, показов не получают — расписание задаётся целиком, а не дополняется. Правила применяются по порядку, последнее переопределяет предыдущие
time_zoneNoЧасовой пояс кампании, например Europe/Moscow. Допустимые значения — в справочнике list_time_zones. Не задан — остаётся прежним
campaign_idYesID кампании, десятичная строка
holiday_end_hourNoЧас окончания показов в праздники, не включая его, 1–24
holiday_start_hourNoЧас начала показов в праздники включительно, 0–23
holiday_bid_percentNoКоэффициент к ставке в праздники, % от текущей: 10–200 с шагом 10. Ноль запрещён — показы отключает suspend_on_holidays
suspend_on_holidaysNotrue — в праздники показов нет; false — идут по правилам holiday_*. Не задан — праздники отдельно не настраиваются
consider_working_weekendsNoПоказывать ли в рабочие выходные по расписанию переносимого буднего дня; false — по расписанию выходного

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.6.1

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false and idempotentHint=true, so the mutating and repeat-safe nature is covered. The description nevertheless adds important non-obvious behavior: the schedule is replaced wholesale, and any hour not covered by a supplied rule receives no impressions — a real operational hazard an agent must know before calling.

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?

Two sentences, front-loaded with the purpose and ending with the high-severity replacement warning, with no filler. Slightly terse given the eight-parameter surface, but every sentence earns its place.

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 an eight-parameter mutation tool with no output schema, the description covers purpose, the destructive-replacement semantics, and points to list_time_zones for valid time_zone values. It omits anything about the response and does not explicitly tie suspend_on_holidays to holiday_bid_percent, though the schema does that work.

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%, including per-field docs for start/end hour semantics, bid_percent stepping, and holiday interaction, so the schema carries the parameter burden. The description only restates the field categories and adds no syntax or format detail beyond it, which is the baseline 3 case.

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?

States a specific verb (Задать) and resource (расписание показов кампании) and enumerates the dimensions it covers: days, hours, hourly coefficients, holidays, time zone. The read counterpart get_time_targeting is implicitly distinguished by the set/get contrast, though it is never named.

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?

Usage is implied by the verb and the enumeration of what can be configured, but there is no explicit statement of when to call this versus get_time_targeting or set_bid_adjustments, nor of prerequisites such as required permissions or the campaign existing.

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