Get an SMS message
bird_get_sms_messageFetch a single SMS message by id. Bird API: GET /v1/sms/messages/{message_id}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message_id | Yes | SMS message id. |
bird_get_sms_messageFetch a single SMS message by id. Bird API: GET /v1/sms/messages/{message_id}.
| Name | Required | Description | Default |
|---|---|---|---|
| message_id | Yes | SMS message id. |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description's 'Fetch' is consistent with that. The description adds the concrete API endpoint, but provides no extra behavioral details such as error cases or rate limits. This matches the baseline for a simple read with 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, direct sentence that states the action, resource, and API path. Zero wasted words, perfectly front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple get-by-id tool with one parameter, a clear purpose, and readOnly annotation, the description is complete. No output schema exists, so no return-value documentation is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one parameter with 100% description coverage, so the schema already fully explains 'message_id'. The description doesn't add anything beyond the schema, which is acceptable given the high coverage baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Fetch' and names the resource 'single SMS message by id', which clearly distinguishes it from listing all SMS messages or fetching other message types. The API path reinforces the exact scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'by id' implies this is for retrieving a specific message when you have its ID, which implicitly tells the agent when to use it versus list operations. It does not explicitly name alternatives or exclusions, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct resource and action: audiences, contacts, messages by channel, templates by channel, and contact properties. Get/list/create operations are clearly separated, with no overlapping purposes.
All tool names follow the consistent bird_<verb>_<resource> pattern, using verbs create/get/list and channel-prefixed resources (e.g., bird_get_email_message, bird_list_whatsapp_templates). No mixed conventions or vague verbs.
At 16 tools, the count is just above the ideal 3-15 range but still reasonable given the need to cover three message channels and multiple resource types. Each tool serves a clear purpose.
The set covers create, get, and list for audiences/contacts, and get/list for messages, but lacks update/delete for audiences/contacts, any send-message capability, and template management beyond listing. These are significant gaps for a messaging platform.