Skip to main content
Glama
Pavelsiba

yandex-direct-mcp-plus

by Pavelsiba

Создать визитку

add_vcard

Adds a virtual business card to a Yandex.Direct campaign, allowing you to include contact information such as company name, address, and phone number in your ads.

Instructions

Создать виртуальную визитку для кампании.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYesГород
ogrnNoОГРН или ОГРНИП организации
houseNoДом
streetNoУлица
countryYesСтрана, например «Россия»
buildingNoКорпус
apartmentNoОфис или квартира
work_timeYesРежим работы в формате API: день_с#день_по#час_с#мин_с#час_по#мин_по, например 1#5#9#0#18#0
campaign_idYesID кампании, к которой привязывается визитка
company_nameYesНазвание организации
phone_numberYesНомер телефона
contact_emailNoКонтактный адрес электронной почты
extra_messageNoДополнительная информация в визитке
contact_personNoКонтактное лицо
phone_city_codeYesКод города или оператора
phone_extensionNoДобавочный номер
metro_station_idNoID станции метро из справочника MetroStations
phone_country_codeYesКод страны, «+7»

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.6.1

TDQS

C2.9/5.0
Behavior2/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 mutating, externally-visible operation. The description adds nothing beyond that: no note on whether the vCard becomes immediately active, whether existing vCards in the campaign are affected, or any limit on how many vCards a campaign may have.

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?

A single front-loaded sentence with no filler or redundancy. It is efficient, though its brevity is close to under-specification rather than exemplary conciseness.

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?

This is a high-complexity mutation with 18 parameters, 8 required, no output schema, and only two structural annotations. The description leaves out the campaign-prerequisite relationship, the effect of creation on existing vCards, and how it relates to list_vcards/delete_vcards, so it is not complete enough for correct invocation in edge cases.

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% across all 18 parameters, including the API-specific work_time format and metro_station_id reference, so the schema carries the semantics well. The description contributes no additional parameter meaning (e.g., which address fields are jointly required), which makes the baseline 3 correct.

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 names a specific verb ('Создать') and resource ('виртуальную визитку') and adds scope ('для кампании'), so the agent knows this creates a vCard bound to a campaign. It does not, however, differentiate itself from siblings such as list_vcards or delete_vcards, which is what would be needed for a 5.

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?

There is no when-to-use guidance, no statement of prerequisites (e.g., that an existing campaign_id is required), and no mention of the related list_vcards/delete_vcards siblings. The agent must infer everything about applicability from the name alone.

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