Skip to main content
Glama
kostikpenzin

mcp-iva-mcu

by kostikpenzin

iva_conference_participants

Manage conference participants in IVA MCU: add, remove, mute, unmute, disconnect, handle hand raises, reactions, DTMF tones, and outgoing calls.

Instructions

IVA conference participants: add/remove/find/get/disconnect participants, mute/unmute media, hand up/down, DTMF, reactions, audio callback, outgoing calls, layout settings, update settings, return to lobby. Clients API v2.28.12.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results
actionYesOperation to perform: - "get_public": Get public participant list (no auth required) - "add": Add participants to a conference session. Required: conferenceSessionId, participants array. - "find": Find participants in a session - "get": Get a specific participant by ID - "get_by_profile": Get participant by profile ID - "get_layout_settings": Get participant's layout settings - "update": Update participant settings - "remove": Remove participants from session. Required: conferenceSessionId, participantIds array. - "disconnect": Disconnect participants from session - "mute_media_all": Mute media for all participants - "mute_media": Mute a specific participant's media. Use when user says 'выключи микрофон', 'mute participant'. - "unmute_media_all": Unmute media for all participants - "unmute_media": Unmute a specific participant's media - "hand_up": Raise hand. Use when user says 'поднять руку', 'raise hand'. - "hand_down": Lower hand - "set_reaction": Set a reaction (LIKE, etc.). Use when user says 'поставь реакцию', 'set reaction'. - "send_dtmf": Send DTMF tones to a participant - "start_outgoing_call": Start an outgoing call to a participant - "start_outgoing_call_to_phone": Start an outgoing call to a phone number - "cancel_outgoing_call": Cancel an outgoing call - "start_audio_callback": Start audio callback for a participant - "stop_audio_callback": Stop audio callback - "return_to_lobby": Return a participant to the lobby
offsetNoNumber of results to skip (pagination offset)
confirmNoSet to true to confirm destructive actions (delete, remove, stop, etc.) when IVA_CONFIRM_DESTRUCTIVE is enabled.
callDataNoOutgoing call data
dtmfDataNoDTMF data
muteDataNoMute data {mediaType, participantIds}
reactionNoReaction type
profileIdNoProfile (user) UUID
callbackDataNoAudio callback data
participantsNoArray of participant objects
participantIdNoParticipant UUID
participantIdsNoArray of participant UUIDs
participantUpdateNoParticipant settings update
conferenceSessionIdNoConference session UUID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.8

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It lists many mutating actions (remove, disconect, cancel, stop) but does not state side effects, confirmation requirements, permissions, or response behavior. The names imply operations, but consequences of destructive actions are not disclosed in the 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 a single front-loaded sentence that lists the main operation groups and ends with a useful API version context. It is concise, but the long comma-separared list reads more like an enumeration than an explanation, so it does not quite reach the top tier.

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's complexity (23 actions, 15 parameters, no annotations, no output schema), a one-line list of operations is not fully complete on its own. The rich schema action descriptions compensate substantially, but missing behavioral context around destructive operations, authentication, and return values leaves an agent under-informed 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%, and parameter descriptions already document each field and action-specific requirements (e.g., add requires conferenceSessionId and participants). The description adds no parameter-level meaning, which is acceptable at the baseline given full schema coverage.

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 identifies the resource ('IVA conference participants') and enumerates the operation categories (add/remove/find/get/disconnect, mute/unmute, hand up/down, DTMF, reactions, etc.), so an agent can tell what the tool manages. It does not explicitly name sibling tools to distinguish against, but 'conference participants' is a reasonably specific resource scope.

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 participant-level conference operations belong in this tool, and the schema's action enum adds triggered-use hints such as 'Use when user says выключи микрофон' and 'raise hand'. However, the tool-level description gives no explicit when-to-use vs alternatives guidance, no prerequisites, and no exclusions for neighboring conference tools.

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