Skip to main content
Glama
kostikpenzin

mcp-iva-mcu

by kostikpenzin

iva_contacts

Handle contact operations on the IVA MCU platform: retrieve contacts, changes, presences, invitations, and tags; invite, reject, remove, update, or add notes.

Instructions

IVA contacts management: get/search contacts, changes, presences, invitations, tags, invite, reject, remove, update, create note. Clients API v2.28.12.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoEntity UUID
limitNoMaximum number of results
actionYesOperation to perform: - "get": Получить список контактов. / Get the list of contacts. - "get_changes": Получить изменения контактов. / Get contacts changes. - "get_presences": Получить статусы присутствия контактов. / Get contacts presences. - "get_invitations": Получить входящие приглашения в контакты. / Get incoming contact invitations. - "get_tags": Получить теги контактов. / Get contact tags. - "get_users_presence": Получить статусы присутствия пользователей. / Get users presences. - "invite": Пригласить пользователей в контакты по UUID профилей. / Invite users to contacts by profile UUIDs. - "reject_invitation": Отклонить приглашение в контакты. / Reject a contact invitation. - "remove": Удалить контакт. / Remove a contact. - "update": Обновить данные контакта. / Update contact data. - "remove_contacts": Удалить несколько контактов. / Remove multiple contacts. - "create_note": Создать заметку о контакте. / Create a contact note.
dateToNoEnd date (UNIX time in ms)
offsetNoNumber of results to skip (pagination offset)
confirmNoSet to true to confirm destructive actions (delete, remove, stop, etc.) when IVA_CONFIRM_DESTRUCTIVE is enabled.
dateFromNoStart date (UNIX time in ms)
noteDataNoNote contact data
contactIdsNoArray of contact UUIDs
profileIdsNoProfile UUIDs to invite
contactDataNoContact data for update
presenceUserIdsNoProfile IDs to get presences for

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.8

TDQS

C2.8/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden of behavioral disclosure. It does not disclose side effects for destructive actions like remove, reject_invitation, or update, nor does it mention confirmation behavior, permissions, or rate limits. The action names imply mutation, but the description adds no behavioral context beyond what is obvious from the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the domain, but it is an unstructured list that partially duplicates the action enum. It also introduces 'search' even though no search action exists in the enum, which is slightly misleading. The trailing API version adds little value.

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 dispatcher tool with 12 parameters, 12 actions, nested objects, and no output schema. The description does not explain which parameters apply to which actions, what the return values look like, or how pagination and date filters work. The schema helps, but the description leaves important contextual gaps for an agent selecting and invoking the tool correctly.

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 action enum has detailed per-action descriptions, so the schema already documents parameters well. The tool description adds no parameter-level meaning, which is acceptable here since the schema covers it. 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 identifies the resource ('IVA contacts') and enumerates the main operations (get, changes, presences, invitations, invite, reject, remove, update, create note), so an agent can tell this is a contacts-management dispatcher. It is distinct from sibling tools by domain, though it does not explicitly differentiate itself from related tools like iva_interlocutors.

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 versus any sibling or alternative. The description lists operations but does not state selection criteria, prerequisites, or which sibling tools cover related but different domains.

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