Skip to main content
Glama
virtualsms-io

VirtualSMS MCP Server

Get Order Details

virtualsms_get_order
Read-onlyIdempotent

Get the full details of a specific order, including status, phone number, service, country, timestamps, and any received SMS code/text. Use this when you have an order_id and need the latest state beyond what get_sms returns.

Instructions

Get the full details of a specific order, including status, phone number, service, country, timestamps, and any received SMS code/text. Use this when you have an order_id and need the latest state beyond what get_sms returns.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
order_idYesOrder ID to retrieve full details for

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.1.1

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already establish read-only, idempotent, non-destructive behavior. The description adds that the tool returns the latest state and includes received SMS content, which is useful behavioral context beyond what annotations convey.

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?

Two sentences carry the purpose, scope, returned fields, and tool routing with no filler. The key information about the latest state is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-parameter read operation, the description is complete: it states inputs, outputs, scope, and relationship to a sibling tool. The safety profile is already covered by annotations, and no output schema is needed to call the tool 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?

The single parameter order_id is already fully described in the schema at 100% coverage. The description restates the need for an order_id without adding format, source, or validation semantics, so it meets the baseline but adds no schema-independent value.

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 a specific action and resource ('get the full details of a specific order') and enumerates the returned fields (status, phone number, service, country, timestamps, SMS code/text). It also differentiates from get_sms by saying it returns beyond what that tool provides, making it clear among many siblings.

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

Usage Guidelines5/5

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

It gives an explicit trigger condition ('Use this when you have an order_id and need the latest state') and names the relevant alternative (get_sms), indicating what that alternative does not cover. This is sufficient routing guidance.

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