Skip to main content
Glama
askads

Yandex Direct MCP

Добавить корректировку ставок

add_bid_modifier

Adds bid modifiers to Yandex Direct campaigns or ad groups, adjusting bids for mobile, desktop, region, and demographics by percentage.

Instructions

Добавляет корректировку ставок на кампанию или группу объявлений. Значения BidModifier — проценты по правилам API (например, 0–1300), а не деньги.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mobileNoКорректировка для мобильных.
desktopNoКорректировка для десктопа.
regionalNoКорректировки по регионам.
adGroupIdNoId группы объявлений (либо это поле, либо campaignId).
campaignIdNoId кампании (либо это поле, либо adGroupId).
retargetingNoКорректировки по ретаргетингу.
demographicsNoКорректировки по демографии.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed9 schema fields changedv1.5.1
    • changedInput schema / properties / adGroupId / description
      Previous value: -"Target ad group id (use this OR campaignId)."New value: +"Id группы объявлений (либо это поле, либо campaignId)."
    • changedInput schema / properties / campaignId / description
      Previous value: -"Target campaign id (use this OR adGroupId)."New value: +"Id кампании (либо это поле, либо adGroupId)."
    • changedInput schema / properties / demographics / description
      Previous value: -"Demographic bid adjustments."New value: +"Корректировки по демографии."
    • changedInput schema / properties / desktop / description
      Previous value: -"Desktop bid adjustment."New value: +"Корректировка для десктопа."
    • changedInput schema / properties / mobile / description
      Previous value: -"Mobile bid adjustment."New value: +"Корректировка для мобильных."
    • changedInput schema / properties / mobile / properties / os / description
      Previous value: -"Limit to IOS or ANDROID."New value: +"Ограничить IOS или ANDROID."
    • changedInput schema / properties / mobile / properties / percent / description
      Previous value: -"Adjustment percent."New value: +"Процент корректировки."
    • changedInput schema / properties / regional / description
      Previous value: -"Regional bid adjustments."New value: +"Корректировки по регионам."
    • changedInput schema / properties / retargeting / description
      Previous value: -"Retargeting bid adjustments."New value: +"Корректировки по ретаргетингу."
  2. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already indicate this is a mutating, non-idempotent, non-destructive operation. The description adds a useful semantic constraint: BidModifier values are percentages per API rules, e.g. 0–1300, not money. However, it does not disclose whether repeated calls merge with existing modifiers, replace them, or create duplicates, nor what a successful response looks like.

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?

Two compact sentences with the purpose stated first and the critical value-format constraint immediately after. There is no redundant wording or filler, and the most important operational caveat is front-loaded.

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

Completeness2/5

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

For a tool with 7 parameters, nested objects, zero required parameters, and no output schema, the description is too thin. It does not mention that a target such as campaignId or adGroupId is likely required, how the adjustment types relate, or how this differs from set_bid_modifiers. An agent would need extra inference or external knowledge to invoke it correctly.

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 100%, so the baseline is 3. The description adds value beyond the schema by explaining that all percent values are percentages in the API range 0–1300 and are not monetary amounts. It also reinforces the campaign/ad group targeting distinction.

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 action and resource: adding a bid adjustment to a campaign or ad group. It is clear and immediately useful, but it does not contrast with the sibling tool set_bid_modifiers, so an agent might not know the exact difference between add and set.

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?

No guidance is given about when to use this tool instead of set_bid_modifiers, delete_bid_modifiers, or get_bid_modifiers. There are no prerequisites, exclusions, or conditions described beyond the general target being a campaign or ad group.

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