Skip to main content
Glama
calebn
by calebn

create_record_room_tool

Creates a recording room with guest and producer links, enabling podcast sessions for a specified project path.

Instructions

Mint a recording room: guest + producer /rec/ links (design: docs/recording-session.md).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
expires_atNo
project_pathYes
public_base_urlNohttp://127.0.0.1:8765

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral burden. It discloses that the tool creates a recording room and generates links, but it does not explain side effects, permissions, idempotency, or what happens to existing rooms or sessions. This is a significant gap for a creation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core action and result. The design-doc reference is useful, though the phrasing 'guest + producer /rec/ links' is somewhat cryptic and could be clearer.

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

Completeness1/5

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

This is a 3-parameter creation tool with no annotation coverage and no parameter documentation in the description. The agent is left without essential information about required inputs, expected behavior, or how this differs from closely related room/link tools. It is not complete enough for reliable invocation.

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

Parameters1/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 by explaining parameters. It provides no information about project_path (required), expires_at, or public_base_url, leaving the agent unable to determine what values these parameters should take.

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 names a specific verb ('Mint') and a specific resource ('recording room'), and it clarifies what the tool produces (guest and producer /rec/ links). It is distinct enough from sibling tools like revoke_record_room_tool and create_review_share_tool, though it does not explicitly contrast with them.

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

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus alternatives like revoke_record_room_tool. The design-doc reference hints at context but does not state when the tool should be invoked or what prerequisites exist.

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