Skip to main content
Glama
kostikpenzin

mcp-iva-mcu

by kostikpenzin

iva_conference_templates

Manage video conference templates: create, list, retrieve, update, delete, or set as default on the IVA MCU platform.

Instructions

IVA conference templates: list/create/get/delete/update templates, set template as default. Clients API v2.28.12.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYesOperation to perform: - "list": Получить список шаблонов конференций. / List conference templates. - "create": Создать шаблон конференции. / Create a conference template. - "get": Получить шаблон конференции по ID. / Get conference template by ID. - "delete": Удалить шаблон конференции. / Delete a conference template. - "update": Обновить шаблон конференции. / Update a conference template. - "set_as_default": Сделать шаблон конференции шаблоном по умолчанию. / Set template as default.
confirmNoSet to true to confirm destructive actions (delete, remove, stop, etc.) when IVA_CONFIRM_DESTRUCTIVE is enabled.
templateDataNoConference template creation/update data
conferenceTemplateIdNoConference template UUID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.8

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are present, so the description carries the burden of behavioral disclosure, but it only restates the operation names already in the schema enum. It does not mention side effects of setting a default, confirmation requirements for deletes, permission needs, or whether changes are reversible. The destructive 'delete' action is visible in the schema, so the description adds no new behavioral context.

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 compact sentence that front-loads the resource and operation set, making it scannable. The trailing 'Clients API v2.28.12' is low-value but not harmful, and the core content has no wasted words.

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?

The schema richly documents parameters and enumerates actions, but the description omits action-to-parameter relationships (e.g., create/update need templateData, get/delete need conferenceTemplateId) and gives no info about return values. Given the tool's complexity and lack of output schema, the description is adequate but leaves some contextual work to the agent.

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 details are fully documented in the schema. The description adds no extra meaning about parameters such as templateData or conferenceTemplateId, but it also does not need to repeat them. Baseline 3 is appropriate because structured data already does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names the exact resource ('IVA conference templates') and enumerates all six operations: list/create/get/delete/update and set as default. This clearly distinguishes the tool from sibling conference tools, which focus on sessions, media, chat, or participants rather than template management.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes the tool's scope explicit by listing the full set of supported template operations, so an agent can infer that any conference-template management task belongs here. It does not explicitly name alternatives or give exclusionary guidance, but the resource name and action list provide clear context.

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