Skip to main content
Glama
kostikpenzin

mcp-iva-mcu

by kostikpenzin

iva_system

Retrieve system/media info, manage conference layouts, handle broadcast notifications and SMS approvals, and send crash reports or support emails.

Instructions

IVA system info: system info, media info, ICE servers, layouts, broadcast notifications, SMS approval, crash report, mail to support, client applications. Clients API v2.28.12.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYesOperation to perform: - "get_system_info": Get IVA system information (build version, server info, etc.). - "get_media_info": Get IVA media server information (media capabilities, codecs, etc.). - "get_ice_servers": Get ICE/TURN servers configuration for WebRTC connections. - "get_layouts": Get the list of available conference video layouts. - "get_layout": Get a specific conference layout by ID (composition/grid definition). - "get_broadcast_notification": Get the current global broadcast notification (system-wide message). - "confirm_sms": Confirm an SMS approval request (e.g. verify SMS code for phone registration). - "send_crash_report": Send a crash report (with file resource) to IVA support. - "send_mail_to_support": Send an email message to IVA technical support. - "get_client_applications": Get the list of available IVA client applications (download links, versions).
fileIdNoCrash report file resource UUID
confirmNoSet to true to confirm destructive actions (delete, remove, stop, etc.) when IVA_CONFIRM_DESTRUCTIVE is enabled.
smsDataNoSMS approval data
layoutIdNoLayout UUID
mailDataNoMail to support data

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?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It lists actions like 'SMS approval, crash report, mail to support' but does not disclose that these are side-effect operations, whether authentication is required, or any consequences such as sending emails or confirming destructive actions. The behavioral detail exists only in the input schema, not 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 compact and front-loaded with the module name, followed by a comma-separated list of capabilities. It is efficient and scannable, though the phrase 'system info' is repeated and the structure is more of a tag list than a complete sentence.

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 aggregate tool with 10 possible actions, multiple optional parameters, nested objects, and no output schema. The description is only a one-line capability list and does not explain return values, required inputs for nested objects like smsData and mailData, or operation-specific behavior. The schema helps, but the description alone is not sufficient for an agent to call all variants confidently.

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 provides meaningful descriptions for each operation, including the confirm destructive-action flag and the crash-report file parameter. The description itself adds little parameter-level meaning, but the schema already covers this dimension adequately.

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 states the tool's domain as 'IVA system info' and enumerates concrete capabilities: system info, media info, ICE servers, layouts, broadcast notifications, SMS approval, crash report, mail to support, and client applications. It is clear that this is the system-level utility tool, though it lacks a single strong verb and is broader than a typical single-purpose tool.

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?

The description gives no guidance on when to use this tool versus alternatives such as iva_conference_media, iva_file_resources, or iva_profile. The scope is implied by the list of system-level operations, but there are no explicit when-to-use or when-not-to-use instructions.

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