Skip to main content
Glama
askads

Yandex Direct MCP

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

create_vcard

Create a virtual business card for a Yandex Direct campaign. Cards are immutable; delete and recreate to modify.

Instructions

Создаёт виртуальную визитку в кампании. Визитки неизменяемы — чтобы поменять, нужно удалить и создать заново.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYesГород, например Москва.
ogrnNoОГРН.
houseNo
phoneYesКонтактный телефон.
streetNo
countryYesСтрана, например Россия.
buildingNo
workTimeYesВремя работы в формате API, например "1#5#9#00#18#00" — пн–пт 09:00–18:00.
apartmentNo
campaignIdYesКампания, к которой относится визитка.
companyNameYesНазвание организации.
contactEmailNo
extraMessageNoДополнительная информация на визитке.
contactPersonNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed12 schema fields changedv1.5.1
    • changedInput schema / properties / campaignId / description
      Previous value: -"Campaign the vCard belongs to."New value: +"Кампания, к которой относится визитка."
    • changedInput schema / properties / city / description
      Previous value: -"City, e.g. Москва."New value: +"Город, например Москва."
    • changedInput schema / properties / companyName / description
      Previous value: -"Company name."New value: +"Название организации."
    • changedInput schema / properties / country / description
      Previous value: -"Country, e.g. Россия."New value: +"Страна, например Россия."
    • changedInput schema / properties / extraMessage / description
      Previous value: -"Additional info shown on the card."New value: +"Дополнительная информация на визитке."
    • changedInput schema / properties / ogrn / description
      Previous value: -"OGRN registration number."New value: +"ОГРН."
    • changedInput schema / properties / phone / description
      Previous value: -"Contact phone."New value: +"Контактный телефон."
    • changedInput schema / properties / phone / properties / cityCode / description
      Previous value: -"City/operator code, e.g. \"495\"."New value: +"Код города или оператора, например \"495\"."
    • changedInput schema / properties / phone / properties / countryCode / description
      Previous value: -"Country code, e.g. \"+7\"."New value: +"Код страны, например \"+7\"."
    • changedInput schema / properties / phone / properties / extension / description
      Previous value: -"Extension, if any."New value: +"Добавочный номер, если есть."
    • changedInput schema / properties / phone / properties / phoneNumber / description
      Previous value: -"Local number."New value: +"Местный номер."
    • changedInput schema / properties / workTime / description
      Previous value: -"Work time in API format, e.g. \"1#5#9#00#18#00\" = Mon–Fri 09:00–18:00."New value: +"Время работы в формате API, например \"1#5#9#00#18#00\" — пн–пт 09:00–18:00."
  2. First observedv0.1.0

TDQS

A3.6/5.0
Behavior4/5

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

The description discloses a critical behavioral trait: 'Визитки неизменяемы — чтобы поменять, нужно удалить и создать заново' (vcards are immutable — to change, you must delete and recreate). This goes beyond the annotations, which only indicate readOnlyHint=false and destructiveHint=false. The description adds the immutability constraint, which is essential for the agent to understand the consequences of creation. Annotations don't contradict this; they are consistent with a create operation.

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 concise: two sentences. The first states the purpose, the second adds the critical immutability constraint. It's front-loaded with the action and resource. No wasted words. However, it could have been slightly more structured by mentioning the required campaignId, but that's in the schema.

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?

Given the tool has 14 parameters, 6 required, and no output schema, the description is relatively thin. It doesn't explain what the response looks like (though no output schema exists, so the agent might need guidance on return values). It also doesn't mention any side effects beyond immutability, such as whether creation requires specific permissions or if there are rate limits. The immutability note is valuable, but for a complex creation tool with many parameters, more context could be provided, such as typical usage patterns or validation rules.

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 57%, so the schema documents many parameters but leaves some (house, street, building, apartment, contactEmail, contactPerson, ogrn) without descriptions. The description itself doesn't add parameter-level semantics beyond what the schema provides. It mentions the workTime format example in the schema, but the description doesn't elaborate on any parameters. Since coverage is moderate, the description could have compensated but doesn't, so a baseline 3 is appropriate.

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 clearly states the verb ('Создаёт' = creates) and the resource ('виртуальную визитку в кампании' = virtual business card in a campaign). It distinguishes from siblings like get_vcards and delete_vcards by focusing on creation. However, it doesn't explicitly name the sibling alternatives, so it doesn't fully differentiate from other create tools like create_text_campaign or create_sitelinks_set, though the resource is specific enough.

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?

The description implies when to use it (when you need to create a vcard) but doesn't provide explicit guidance on when not to use it or mention alternatives. It doesn't state prerequisites like needing a campaignId or that the campaign must exist. The context of sibling tools suggests there are related operations (get_vcards, delete_vcards) but no explicit routing is given.

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