Skip to main content
Glama

get_audio_clip

Read-onlyIdempotent

Resolve a bird detection's audio clip to a full HTTP URL for sharing or embedding in messages and web pages. Use this when a direct link is needed; for inline audio data, request base64 instead.

Instructions

Resolve a detection's audio clip (.wav) into a full HTTP URL on the clips file server, for sharing or embedding in messages and web pages. The URL is only reachable from the same network as the clips server. Use get_audio_clip_base64 instead when the audio data must be returned inline to the model.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
clip_nameYesClip file name exactly as returned in a detection record, e.g. 'sialia_sialis_96p_20260829T192351Z.wav'
detection_dateNoDetection date in YYYY-MM-DD format; used as a fallback to locate the clip's folder when the filename embeds no parseable date

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds meaningful behavioral context beyond those annotations: the generated URL is only reachable from the same network as the clips server, and this tool returns a URL rather than inline data. This is useful and does not contradict the annotations.

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 three sentences with no filler. It front-loads the core action and output, then states the network caveat, then gives the routing instruction to the sibling tool. Every sentence earns its place.

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 URL-resolution tool with rich annotations and full schema coverage, the description is complete. It explains what is returned, flags a critical network limitation, and points to the appropriate alternative when inline data is needed. No important guidance is missing for an agent to select and use 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 input schema already documents both clip_name and detection_date in sufficient detail. The description does not add substantial semantic information about the parameters beyond what the schema provides, so the baseline score of 3 applies.

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 states a specific verb ('Resolve'), a specific resource ('a detection's audio clip (.wav)'), and the output form ('full HTTP URL'), with the purpose of sharing or embedding. It also distinguishes itself from the sibling get_audio_clip_base64, so an agent can clearly tell what this tool does.

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?

The description explicitly names the alternative tool get_audio_clip_base64 and gives the exact condition for choosing it: when the audio data must be returned inline to the model. It also conveys a constraint on URL reachability, which helps an agent decide whether this tool is appropriate for a given context.

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