Skip to main content
Glama
calebn
by calebn

set_session_playing_tool

Control DAW transport playback by setting the playing state to true or false for a project path, starting or pausing the session without OS audio.

Instructions

Start or pause DAW browser transport (no OS audio).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
playingYes
project_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the core action and one non-effect ('no OS audio'), but it does not disclose what happens to transport position on pause, whether setting playing=true when already playing is idempotent, or what state changes occur. This is a significant gap for a state-changing 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 a single front-loaded sentence with no wasted words. The action and the critical 'no OS audio' qualifier appear immediately, making it easy to parse and act on.

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

Completeness3/5

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

The tool is simple and has an output schema, so return-value details are not required. However, with no annotations and no parameter descriptions, the missing project_path semantics and transport-state behavior leave the definition only minimally complete for an agent that needs to call it correctly.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not explain either parameter. 'playing' is somewhat inferable from 'start or pause', but 'project_path'—a required field—has no format, role, or example provided. The description adds almost no parameter meaning beyond the property names.

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 ('start or pause') and resource ('DAW browser transport'), and the parenthetical 'no OS audio' clearly distinguishes it from audible playback tools like play_audio_tool. An agent can identify this tool's role among many transport-related siblings.

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 'no OS audio' clause provides useful context and rules out audible playback use, but the description does not explicitly name alternatives or state when to choose this tool over stop_session_tool, play_audio_tool, or seek_session_tool. The pause-vs-stop distinction is implied, not stated.

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