Skip to main content
Glama

audio_create_concurrency

Create a Sound Concurrency asset to limit overlapping audio by setting max active voices, resolution rules, and retrigger times.

Instructions

Create a Sound Concurrency asset for voice limiting.

Args: name: Asset name such as SCN_Impacts. path: Content Browser folder under /Game. max_count: Maximum active voices in the group. resolution_rule: prevent_new, stop_oldest, stop_quietest, stop_lowest_priority, or stop_farthest_then_oldest. limit_to_owner: Limit concurrency per owning actor. retrigger_time: Minimum seconds between accepted plays. overwrite: Delete an existing asset with the same name first. save: Save the package after creation.

KB: see knowledge_base/21_METASOUNDS_AND_AUDIO_DSP.md#mcp-audio-tools Example: audio_create_concurrency(name="SCN_Impacts", max_count=6, resolution_rule="stop_quietest")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
pathNo/Game/Audio/Concurrency
saveNo
max_countNo
overwriteNo
limit_to_ownerNo
retrigger_timeNo
resolution_ruleNostop_farthest_then_oldest

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.6/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 transparency burden. It discloses destructive behavior via 'overwrite: Delete an existing asset with the same name first' and persistence behavior via 'save: Save the package after creation.' This adds meaningful behavioral context beyond the operation name.

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 efficiently structured: a one-line purpose, a compact Args list, a KB pointer, and a concrete example. Every section earns its place and the most important action 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 creation tool with 8 parameters, the description covers purpose, all parameter semantics, destructive overwrite behavior, and provides an example and KB reference. Since an output schema exists, the absence of return-value detail is acceptable.

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

Parameters5/5

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

Schema description coverage is 0%, so the description fully compensates by explaining all 8 parameters. It defines each parameter clearly, including the valid values for resolution_rule, making the tool callable without needing external documentation.

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?

Description states a specific verb and resource: 'Create a Sound Concurrency asset for voice limiting.' This clearly identifies the asset type and purpose, distinguishing it from sibling audio creation tools like audio_create_soundcue and audio_create_attenuation.

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

Usage Guidelines4/5

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

The phrase 'for voice limiting' provides clear context for when this tool is appropriate. However, it does not explicitly mention alternatives or state when not to use it, so it stops short of the strongest guidance.

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

Deploy Server

Other Tools