Skip to main content
Glama
kostikpenzin

mcp-iva-mcu

by kostikpenzin

iva_conference_inquiry

Manage conference polls: create, start, stop, collect and export responses, and analyze aggregated answers.

Instructions

IVA conference inquiries (polls): create/find/get/delete/update inquiries, start/stop individual or all inquiries, answer/edit answers, find responders, get aggregated answers, export. Clients API v2.28.12.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results
actionYesOperation to perform: - "create": Создать опрос в конференции. / Create a poll/inquiry in the conference. - "find": Найти опросы конференции. / Find conference inquiries. - "get": Получить опрос по ID. / Get inquiry by ID. - "delete": Удалить опрос. / Delete an inquiry. - "update": Обновить опрос. / Update an inquiry. - "start": Запустить опрос. / Start an inquiry. - "stop": Остановить опрос. / Stop an inquiry. - "start_all": Запустить все опросы. / Start all inquiries. - "stop_all": Остановить все опросы. / Stop all inquiries. - "answer": Ответить на опрос. / Answer an inquiry. - "edit_answer": Редактировать ответ на опрос. / Edit an inquiry answer. - "get_answers": Получить ответы на опрос. / Get inquiry answers. - "find_responders": Найти респондентов опроса. / Find inquiry responders. - "get_aggregated_answers": Получить агрегированные ответы. / Get aggregated answers. - "export": Экспортировать ответы на опрос. / Export inquiry answers. - "export_all": Экспортировать все ответы на опросы. / Export all inquiry answers.
offsetNoNumber of results to skip (pagination offset)
confirmNoSet to true to confirm destructive actions (delete, remove, stop, etc.) when IVA_CONFIRM_DESTRUCTIVE is enabled.
answerIdNoAnswer UUID
inquiryIdNoInquiry UUID
answerDataNoAnswer data
inquiryDataNoInquiry creation/update data
answerUpdateNoAnswer edit data
respondersDataNoFind responders criteria
conferenceSessionIdNoConference session UUID

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 must carry the behavioral burden. It names many mutating/destructive actions (delete, stop, update, answer) but does not disclose side effects, confirmation requirements, permissions, or operation-specific behavior; the confirm behavior is only mentioned in the 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 a compact single sentence that front-loads the resource and lists operations efficiently. The trailing 'Clients API v2.28.12' is marginally useful version context but not central to invocation.

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 facade with 11 parameters, nested objects, many enum actions, and no output schema; the description does not explain how the action parameter dispatches behavior, what each operation returns, or how conferenceSessionId relates to it. An agent would need the schema and further inference to call 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 schema already explains all 11 parameters, including action enums and UUID meanings. The tool description adds no parameter-level detail beyond that, which matches the baseline for high 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 identifies a specific resource ('IVA conference inquiries (polls)') and enumerates precise operations (create, find, get, delete, update, start/stop, answers, export), so an agent can see what the tool does. It does not explicitly contrast with closely related siblings such as iva_conference_questionnaire, so it stops short of full differentiation.

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 about when to call this tool instead of a sibling or which action to choose for a given intent. It merely lists capabilities; no when/when-not or alternative conditions are stated.

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