Skip to main content
Glama
Pavelsiba

yandex-direct-mcp-plus

by Pavelsiba

Создать группу

create_ad_group

Create an ad group in a campaign with regional targeting. Specify the campaign, group name, and region IDs to define where ads are shown.

Instructions

Создать группу объявлений в кампании с таргетингом по регионам (см. get_regions).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesНазвание группы
region_idsYesРегионы показа, коды из get_regions: ["225"] — Россия, ["225","-213"] — Россия кроме Москвы, ["0"] — все регионы. Минус-регионы нельзя сочетать с 0 и нельзя отправлять одни, без обычного региона
campaign_idYesID кампании, в которой создаётся группа

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.6.1

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false and openWorldHint=true, so the agent knows this is a write against external state. The description adds the region-targeting nature of the created entity, but says nothing about required permissions, whether the parent campaign must pre-exist, or failure modes.

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?

One compact sentence with the verb front-loaded and no filler. It could be marginally improved by making the get_regions cross-reference more actionable, but there is no waste.

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?

With full schema coverage, annotations covering the write/safety profile, and no output schema to explain, the description is nearly sufficient. It still omits prerequisites (existing campaign) and confirmation/return behavior, leaving a modest gap for a mutating tool.

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% and the schema itself is unusually rich (region_ids documents the get_regions format, negative-region rules, and the '0' special case). The description adds no parameter meaning beyond the schema, so the baseline 3 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 (create) and resource (ad group) plus its embedding context (inside a campaign) and the region-targeting angle, which distinguishes it from the generic campaign/keyword siblings. It does not explicitly contrast with siblings like create_campaign or create_text_ad, but the scope is unambiguous.

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?

It points the agent to get_regions as the source for region codes, which is genuinely useful for populating region_ids. Beyond that, there is no statement of when to use this versus create_campaign or other creation tools, and no listed prerequisites or exclusions.

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