Skip to main content
Glama

get_sound_set

Get a coherent set of sounds for an app or game in one call — one sound per role, with format metadata, hashes and stable download URLs. Use it when the task needs a whole kit; use get_role_sound for one event. Check content_check: verified/unverified/rejected is bound to the exact role, format and file SHA256; unverified files still require listening in context. Sets include UI styles, game and app scenarios, acoustic-drum-kit, animal-calls (15 isolated calls), and dungeon-traps (6 isolated mechanisms).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
setNoSet id (default ui-crisp). Includes acoustic-drum-kit, animal-calls and dungeon-traps alongside the UI and scenario sets listed in the enum.
formatNoFile format for selection and checks (default WAV). Legacy urls remains MP3; download_urls follows this format.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / format / enum
      Previous value: -[
      -  "wav",
      -  "mp3"
      -]New value: +[
      +  "wav",
      +  "mp3",
      +  "ogg"
      +]
  2. Changed2 schema fields changed
    • changedInput schema / properties / set / description
      Previous value: -"Set id (default ui-crisp). Style: ui-crisp | ui-soft | ui-spacious | retro-game. Instrument: acoustic-drum-kit. Scenario: chat-app | saas-app | checkout | learning | puzzle-game | platformer | horror-game | video-editing | smart-device | wellness | ai-coding-tool"New value: +"Set id (default ui-crisp). Includes acoustic-drum-kit, animal-calls and dungeon-traps alongside the UI and scenario sets listed in the enum."
    • changedInput schema / properties / set / enum
      Previous value: -[
      -  "ui-crisp",
      -  "ui-soft",
      -  "ui-spacious",
      -  "retro-game",
      -  "chat-app",
      -  "saas-app",
      -  "checkout",
      -  "learning",
      -  "puzzle-game",
      -  "platformer",
      -  "horror-game",
      -  "video-editing",
      -  "smart-device",
      -  "wellness",
      -  "ai-coding-tool",
      -  "acoustic-drum-kit"
      -]New value: +[
      +  "ui-crisp",
      +  "ui-soft",
      +  "ui-spacious",
      +  "retro-game",
      +  "chat-app",
      +  "saas-app",
      +  "checkout",
      +  "learning",
      +  "puzzle-game",
      +  "platformer",
      +  "horror-game",
      +  "video-editing",
      +  "smart-device",
      +  "wellness",
      +  "ai-coding-tool",
      +  "acoustic-drum-kit",
      +  "animal-calls",
      +  "dungeon-traps"
      +]
  3. Changed2 schema fields changed
    • changedInput schema / properties / set / description
      Previous value: -"Set id (default ui-crisp). Style: ui-crisp | ui-soft | ui-spacious | retro-game. Scenario: chat-app | saas-app | checkout | learning | puzzle-game | platformer | horror-game | video-editing | smart-device | wellness | ai-coding-tool"New value: +"Set id (default ui-crisp). Style: ui-crisp | ui-soft | ui-spacious | retro-game. Instrument: acoustic-drum-kit. Scenario: chat-app | saas-app | checkout | learning | puzzle-game | platformer | horror-game | video-editing | smart-device | wellness | ai-coding-tool"
    • changedInput schema / properties / set / enum
      Previous value: -[
      -  "ui-crisp",
      -  "ui-soft",
      -  "ui-spacious",
      -  "retro-game",
      -  "chat-app",
      -  "saas-app",
      -  "checkout",
      -  "learning",
      -  "puzzle-game",
      -  "platformer",
      -  "horror-game",
      -  "video-editing",
      -  "smart-device",
      -  "wellness",
      -  "ai-coding-tool"
      -]New value: +[
      +  "ui-crisp",
      +  "ui-soft",
      +  "ui-spacious",
      +  "retro-game",
      +  "chat-app",
      +  "saas-app",
      +  "checkout",
      +  "learning",
      +  "puzzle-game",
      +  "platformer",
      +  "horror-game",
      +  "video-editing",
      +  "smart-device",
      +  "wellness",
      +  "ai-coding-tool",
      +  "acoustic-drum-kit"
      +]
  4. Changed1 schema field changed
    • addedInput schema / properties / format
      Added value: +{
      +  "description": "File format for selection and checks (default WAV). Legacy urls remains MP3; download_urls follows this format.",
      +  "enum": [
      +    "wav",
      +    "mp3"
      +  ],
      +  "type": "string"
      +}
  5. First observed

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations provided, the description carries the full disclosure burden. It reveals key behaviors: one sound per role, format metadata, hashes, stable download URLs, and the meaning of content_check states including the warning that unverified files still require listening in context. Minor behavioral details such as side effects or permissions are not stated, but the description is strong for a read-style retrieval tool.

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 compact and front-loaded: core purpose, usage guidance, safety caveat, and set inventory in four sentences. Every sentence contributes useful information, and no filler or repetition exists.

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 two-parameter tool with no output schema, the description is sufficiently complete. It explains what the response contains, when to use the tool, how to interpret content verification, and which specialized sets are available. The enum in the schema already lists set ids, and the description adds the missing counts for animal-calls and dungeon-traps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and both parameters have enum descriptions, so the baseline is 3. The description adds extra meaning by explaining that the result includes format metadata and that content_check is bound to role, format, and SHA256, which clarifies how the format parameter affects validation and output. This goes beyond the bare schema definitions.

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 clear, specific action: 'Get a coherent set of sounds for an app or game in one call — one sound per role.' It also distinguishes this tool from get_role_sound by explicitly framing set retrieval versus single-event retrieval, so an agent can differentiate siblings without opening schemas.

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 gives explicit usage direction: 'Use it when the task needs a whole kit; use get_role_sound for one event.' It also provides a practical caution about content_check and unverified files, which helps the agent decide when and how to apply the result.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources