Skip to main content
Glama

baton_create_room

지속되는 팀 방을 만든다. 반환: room_id(방장이 보관·관리용) + invite_code(공유용, 72h 만료). alias를 주면 방장이 자동 입장. require_approval을 켜면 입장에 방장 승인 필요.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo방 이름
aliasNo방장 별명(주면 자동 입장)
api_keyNo방장 계정 키 — 방 관리(초대발급·kick·승인) 권한. Authorization 헤더로도 자동 첨부
require_approvalNotrue=입장에 방장 승인 필요

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changed
    • changedInput schema / properties / alias / description
      Previous value: -"내 별명 — 주면 방 생성과 동시에 자동 입장"New value: +"방장 별명(주면 자동 입장)"
    • changedInput schema / properties / api_key / description
      Previous value: -"계정 키(방 한도·시트 적용). Authorization 헤더로도 자동 첨부"New value: +"방장 계정 키 — 방 관리(초대발급·kick·승인) 권한. Authorization 헤더로도 자동 첨부"
    • addedInput schema / properties / require_approval
      Added value: +{
      +  "description": "true=입장에 방장 승인 필요",
      +  "type": "boolean"
      +}
    • removedInput schema / properties / ttl_hours
      Removed value: -{
      -  "description": "만료(기본 72h)",
      -  "type": "number"
      -}
  2. Changed1 schema field changed
    • addedInput schema / properties / api_key
      Added value: +{
      +  "description": "계정 키(방 한도·시트 적용). Authorization 헤더로도 자동 첨부",
      +  "type": "string"
      +}
  3. First observed

TDQS

A4.2/5.0
Behavior4/5

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

No annotations, so description carries full burden. Discloses persistence, return values (room_id, invite_code with 72h expiry), effects of alias (auto-enter) and require_approval (host approval). Could add authentication details beyond param description.

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?

Three concise sentences in Korean, front-loaded with the main action and return. Every sentence provides essential information without redundancy.

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?

Covers creation, return values, key options. No output schema needed. Could mention success/failure cases but adequate for the complexity.

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

Parameters4/5

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

Schema coverage is 100%, but description adds value by explaining behavior of alias (auto-enter) and require_approval (host approval), which go beyond schema descriptions.

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 clearly states the verb 'creates' and resource 'persistent team room', lists return values (room_id, invite_code), and distinguishes from siblings like baton_join, baton_close_room.

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?

Implies when to use (to create a room) but lacks explicit guidance on when not to use or alternatives. No mention of prerequisites or comparison with similar tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.