Skip to main content
Glama
theYahia

@theyahia/voximplant-mcp

by theYahia

get_scenarios

List Voximplant scenarios with optional name filter and pagination to manage call flows.

Instructions

Получить список сценариев Voximplant.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoКоличество записей (1..200)
offsetNoСмещение (offset)
scenario_nameNoФильтр по имени сценария

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changedv2.0.0
    • changedInput schema / properties / count / description
      Previous value: -"Количество сценариев"New value: +"Количество записей (1..200)"
    • changedInput schema / properties / offset / description
      Previous value: -"Смещение"New value: +"Смещение (offset)"
    • addedInput schema / properties / offset / minimum
      Added value: +0
  2. First observedv1.2.3

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations present, the description carries the full burden of behavioral disclosure. It only states 'get list' with no mention of side effects, permission requirements, pagination behavior, or response format. For a read operation, the lack of explicit read-only declaration is a gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, concise sentence that front-loads the core purpose. There is zero fluff, and every word adds value. It is as short as possible while remaining informative.

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?

The description is minimal for a tool with 3 optional parameters, no output schema, and no annotations. It lacks information about pagination limits, filtering semantics, or expected response structure. An agent would need to open the schema to understand basic usage, but even then, broader context (e.g., what scenarios are) is absent.

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 coverage is 100%, so each parameter has a description in the schema. The tool description adds no additional meaning about the parameters (e.g., how count/offset interact or how scenario_name filters). Baseline 3 applies because schema adequately documents the parameters.

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 states a get operation on the resource 'list of scenarios' within the Voximplant domain. It is specific enough to distinguish from unrelated siblings like get_users or send_sms, but does not differentiate it from closely related scenario tools (e.g., update_scenario) beyond the verb.

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?

No guidance on when to use this tool vs alternatives. It does not mention filtering capabilities, pagination, or any conditions that would favor this tool over others. The agent is left to infer usage from the name alone.

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