Skip to main content
Glama
kostikpenzin

mcp-iva-mcu

by kostikpenzin

iva_conference_documents

Create, update, move, and list conference documents; start, stop, pause, and play document/video demonstrations in IVA MCU video conferences.

Instructions

IVA conference documents: create/delete/update/move/list documents and directories, document/video demonstration control (start/stop/pause/play/position), get pages/path/can-upload, public documents. Clients API v2.28.12.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results
actionYesOperation to perform: - "get_public": Получить публичные документы конференции. / Get public conference documents. - "create_directory": Создать директорию документов. / Create a document directory. - "create_document": Создать документ из ресурса. / Create a document from a resource. - "delete": Удалить документ. / Delete a document. - "update": Обновить документ. / Update a document. - "can_upload": Проверить возможность загрузки документа. / Check if document upload is allowed. - "get_pages": Получить страницы документа. / Get document pages. - "get_path": Получить путь к директории. / Get directory path. - "list": Получить список документов в директории. / List documents in a directory. - "move": Переместить документ в другую директорию. / Move a document to another directory. - "start_document_demo": Начать демонстрацию документа. / Start document demonstration. - "stop_document_demo": Остановить демонстрацию документа. / Stop document demonstration. - "start_video_demo": Начать демонстрацию видео-документа. / Start video document demonstration. - "stop_video_demo": Остановить демонстрацию видео-документа. / Stop video document demonstration. - "pause_video": Поставить видео на паузу. / Pause the video. - "play_video": Воспроизвести видео. / Play the video. - "set_video_position": Установить позицию видео. / Set video position. - "update_cursor_state": Обновить состояние курсора на документе. / Update document cursor state. - "update_demo_state": Обновить состояние демонстрации документа. / Update document demonstration state.
offsetNoNumber of results to skip (pagination offset)
confirmNoSet to true to confirm destructive actions (delete, remove, stop, etc.) when IVA_CONFIRM_DESTRUCTIVE is enabled.
cursorDataNoCursor state data
documentIdNoDocument UUID
resourceIdNoResource UUID
directoryIdNoDirectory UUID
positionDataNoVideo position data
demoStateDataNoDemonstration state data
documentUpdateNoDocument update data
sourceDocumentIdNoSource document UUID
conferenceSessionIdNoConference session UUID
destinationDirectoryIdNoDestination directory UUID

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?

With no annotations provided, the description carries the full burden of behavioral disclosure. It names destructive and state-changing operations like delete, move, stop, and update, but does not disclose side effects, confirmation requirements, permission needs, or any constraints. Similarly, the demo/video control operations imply session state changes but no behavioral context is given.

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 a single terse sentence that front-loads the domain name, but it is mostly a comma-separated rehash of categories already present in the action enum. The trailing 'Clients API v2.28.12' adds no operational value. Efficient in length, but not well structured for an agent to extract actionable guidance.

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 highly complex dispatcher tool with 14 parameters, 19 action enum values, nested objects, and no output schema, yet the description provides only a high-level summary. It does not map actions to required parameters, mention return behavior, or clarify prerequisites. An agent would need to rely almost entirely on the schema to invoke it 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%, so the parameter schema already documents every parameter individually. The description adds no additional meaning beyond the schema; it only lists operation categories. Baseline 3 is appropriate because the schema does the heavy lifting and the description does not compensate with extra context.

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 as 'IVA conference documents' and enumerates the main families of operations: CRUD/list/move, demo control, and page/path/upload queries. It is specific enough to distinguish the tool from generic iva_documents by conference scope, but it is a broad capability list rather than a single focused verb+resource statement.

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 provides no guidance on when to use this tool versus alternatives like iva_documents, iva_conference_media, or iva_file_resources. It does not state prerequisites, exclusions, or selection conditions, so an agent must infer applicability solely from the resource name and operation list.

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