Skip to main content
Glama
calebn
by calebn

open_gui_tool

Launch a read-only DAW web viewer for a podcast project and return its URL. Reuses an existing viewer if already running.

Instructions

Start the read-only DAW web viewer (background) and return its URL.

Idempotent: if a healthy viewer is already listening on host:port, reuses it and optionally opens the browser to this project. Requires the gui extra (uv sync --extra gui) and a built gui/web dist for the HTML UI.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hostNo127.0.0.1
portNo
open_browserNo
project_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/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 burden of behavioral disclosure, and it delivers: it flags the operation as read-only, running in background, idempotent with reuse semantics, and dependent on an optional extra and a built dist. Minor omissions remain (what 'healthy' means, failure behavior when prerequisites are unmet), but the safety profile is unusually well covered for an annotation-free 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?

Two tight paragraphs, zero filler. The primary action and return value are front-loaded in the first sentence, followed by a compact idempotency note and prerequisite line. Every sentence adds distinct value.

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?

The description is largely complete for a 4-parameter launch tool with an output schema: it covers purpose, background execution, idempotency, browser behavior, and setup prerequisites. The remaining gaps — precise semantics of project_path and the definition of a 'healthy' viewer — are real but minor and do not block correct invocation.

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 0%, so the description must compensate. It adds meaning to host/port (the reuse key for an existing viewer) and to open_browser ('optionally opens the browser to this project'). However, project_path, the only required parameter, is never explicitly defined beyond the vague 'this project' — the agent must infer whether it points to a project directory, a manifest, or the built dist. This partial compensation warrants a 3.

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 opens with a specific verb+resource pairing: 'Start the read-only DAW web viewer (background) and return its URL.' This clearly states the action, the object, the execution mode (background), and the return value. It is unambiguously distinguishable from the sibling tools, none of which launch a GUI viewer.

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 description provides clear context for when and how to call the tool, including the idempotency guarantee (reuses a healthy existing viewer on host:port) and explicit prerequisites ('Requires the gui extra ... and a built gui/web dist'). It does not name alternatives or explicit when-not-to-use conditions, but no sibling tool is a plausible substitute.

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