Skip to main content
Glama

metasound_create_source

Create a MetaSound Source asset for playable procedural audio, with options for path, one-shot, overwrite, and save.

Instructions

Create a MetaSound Source asset for playable procedural audio.

Args: name: Asset name such as MS_GeneratorHum. path: Content Browser folder under /Game. one_shot: Metadata hint for source intent; true for one-shot sources. 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: metasound_create_source(name="MS_GeneratorHum", path="/Game/Audio/MetaSounds")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
pathNo/Game/Audio/MetaSounds
saveNo
one_shotNo
overwriteNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/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 behavioral disclosure burden. It is transparent that overwrite deletes an existing asset first and that save persists the package after creation, and it clarifies one_shot is only a metadata hint. It does not state the failure behavior when overwrite=false and the asset already exists, which is a minor gap.

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 with a clear purpose, followed by a well-structured Args block, a KB pointer, and a concrete example. Every line adds information without padding.

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

Completeness4/5

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

For a five-parameter creation tool with an output schema, the description is complete enough for an agent to invoke it correctly, including default behaviors and an example. The main missing context is sibling-tool differentiation, but that is already scored under usage guidelines.

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 must fully explain the parameters, and it does. Each of the five parameters gets meaningful semantic context: naming convention, Content Browser path, one_shot intent, overwrite deletion behavior, and save persistence. The example reinforces the two most important parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The first sentence states a specific verb and resource: 'Create a MetaSound Source asset for playable procedural audio.' This is clear and distinguishable from generic creation tools, though it never names sibling tools like metasound_create_patch, so it lacks explicit sibling differentiation.

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

Usage Guidelines3/5

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

The purpose statement implies when to use the tool: whenever a MetaSound Source asset is needed for procedural audio. However, it gives no explicit when-not-to-use guidance and does not route the agent toward metasound_create_patch or audio_create_soundcue when a different asset type is needed.

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