Skip to main content
Glama
calebn
by calebn

record_start_tool

Start the recording room as host and wait for each guest's consent before beginning the session.

Instructions

Host Start for the current record room (blocked until guests consent).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/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. It usefully discloses that the tool blocks until guest consent, which is a key behavioral trait. It omits other important behavior such as whether the start is idempotent, what happens after unblocking, or any host-only permission requirement.

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 sentence with no filler. It front-loads the action and includes the most critical constraint, making every word earn its place.

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?

An output schema exists, so return values need not be described. The description covers the core action and key blocking behavior, but it leaves parameter semantics and usage routing unaddressed. It is adequate but has clear gaps for a tool with one undocumented required parameter.

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?

The schema has one required parameter, project_path, with 0% description coverage. The description never mentions this parameter or explains how it relates to the 'current record room', making it unclear whether project_path identifies the room or is redundant. The description fails to compensate for the missing schema documentation.

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 description identifies a specific action ('Host Start'), a clear resource ('current record room'), and a notable behavioral constraint ('blocked until guests consent'). It distinguishes from sibling record_* tools by naming the start operation, but it does not explicitly contrast it with record_resume_tool or record_land_tool.

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 phrase 'blocked until guests consent' gives an implicit precondition, telling the agent that consent is required before this action can proceed. However, there is no explicit when-to-use/when-not-to-use guidance and no reference to alternative tools, so the usage context is only implied.

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