Skip to main content
Glama
theYahia

@theyahia/voximplant-mcp

by theYahia

get_a2p_sms_history

Retrieve A2P SMS delivery history with filters for source/destination numbers, delivery status, and date range.

Instructions

История доставки A2P-SMS с фильтрами по номерам, статусу и периоду.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoКоличество записей (1..200)
offsetNoСмещение (offset)
to_dateNoКонец периода (YYYY-MM-DD HH:mm:ss, UTC)
from_dateNoНачало периода (YYYY-MM-DD HH:mm:ss, UTC)
source_numberNoФильтр по номеру отправителя (SenderID)
delivery_statusNoФильтр по статусу доставки
destination_numberNoФильтр по номеру получателя

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.0.0

TDQS

B3.1/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 only states the resource and filters, offering no information about side effects (e.g., read-only nature), pagination behavior, rate limits, or response format. This is a significant gap for a tool with zero annotation coverage.

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?

The description is a single, tight sentence with no filler. It conveys the essential purpose efficiently and is appropriately sized for a straightforward history retrieval tool.

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?

For a tool with 7 optional parameters and no output schema, the description is adequate but minimal. It does not mention that all filters are optional, nor does it describe the response structure or pagination defaults (though these are partially captured in the schema). An agent could call it correctly, but more context would improve completeness.

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 all 7 parameters have individual descriptions. The tool description merely summarizes them as 'filters by numbers, status and period' without adding new semantics beyond what the schema already provides. Thus the baseline of 3 applies.

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 the tool retrieves A2P-SMS delivery history with filters, which distinguishes it from the sibling get_sms_history by specifying the A2P type. However, it does not explicitly contrast with siblings, so it falls short of a perfect score.

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?

There is no guidance on when to use this tool versus alternatives like get_sms_history or send_a2p_sms. The description only states what it does, not when it should be chosen, leaving the agent to infer usage context.

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