Skip to main content
Glama
kostikpenzin

mcp-iva-mcu

by kostikpenzin

iva_chat_call

Manage chat calls in IVA MCU: join, leave, hold, record, share screen, send DTMF, transfer calls, and control media state.

Instructions

IVA chat calls: join/leave/hold calls, start/stop recording, start/stop screen sharing, transfer calls, DTMF, media state, start outgoing call, cancel outgoing call. Clients API v2.28.12.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYesOperation to perform: - "get": Get the current state of a chat call (participants, media, status). Получить состояние звонка в чате. - "join": Join a chat call (audio/video). Присоединиться к звонку в чате. Войти в звонок. - "join_v2": Join a chat call (v2 endpoint with extended options). Присоединиться к звонку (v2). - "start": Start a new chat call (audio/video) in the chat room. Начать звонок в чате. - "leave": Leave the current chat call. Покинуть звонок. Выйти из звонка. - "hold": Put the chat call on hold. Поставить звонок на удержание. - "start_recording": Start recording the chat call. Начать запись звонка. - "stop_recording": Stop recording the chat call. Остановить запись звонка. - "start_screenshare": Start screen sharing inside a chat call. Начать демонстрацию экрана в звонке. - "stop_screenshare": Stop screen sharing inside a chat call. Остановить демонстрацию экрана в звонке. - "set_media_state": Set media state for the chat call (mute audio/video, camera on/off). Установить состояние медиа. - "send_dtmf": Send a DTMF tone (digit press) during the call. Отправить DTMF-сигнал. - "start_outgoing_call": Start an outgoing call from a participant in the chat. - "cancel_outgoing_call": Cancel an outgoing call that has not yet been answered. Отменить исходящий вызов. - "transfer_to_call": Transfer the current chat call to another chat call. Перевести звонок на другой звонок. - "transfer_to_user": Transfer the current chat call to another user. Перевести звонок на другого пользователя.
confirmNoSet to true to confirm destructive actions (delete, remove, stop, etc.) when IVA_CONFIRM_DESTRUCTIVE is enabled.
callDataNoStart call data
dtmfDataNoDTMF data
joinDataNoJoin call data (media constraints, ICE servers)
profileIdNoProfile (user) UUID
chatRoomIdNoChat room UUID
mediaStateNoMedia state (AUDIO/VIDEO, e.g. {"audio":"RECVONLY","video":"DISABLED"})
transferDataNoTransfer data (target chatRoomId or profile)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.8

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the tool description carries the full burden of disclosing side effects, but it does not mention that recording, transfer, leave, or outgoing-call actions change call state or may be irreversible. The only destructive-action hint appears in the confirm parameter description, not in the tool description.

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 one compact, front-loaded sentence that communicates the full operation range plus a version tag. It is efficient and free of filler, though the dense semicolon list reads more like a catalog than a narrative.

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?

For a tool with 16 actions, 9 parameters, nested objects, and no output schema, the high-level description is thin, and the schema does not specify which params are required per action. However, the detailed action enum and parameter descriptions cover much of the operational semantics, so the definition is minimally adequate with clear gaps.

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?

The description adds no parameter-level information, but schema description coverage is 100% and the action enum is richly explained. Nested-object descriptions such as callData: 'Start call data' are thin, yet the schema meets the high-coverage baseline, so a 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 names the resource (IVA chat calls) and enumerates the concrete operations: join/leave/hold, recording, screen sharing, transfer, DTMF, media state, and outgoing calls. This is specific enough to distinguish from sibling tools but it is a catalog rather than a single verb-purpose statement, so not 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 and no contrast with alternatives such as iva_chat or iva_conference. The description simply lists operations, leaving the agent to infer when this tool should be selected.

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