Skip to main content
Glama

Tincan

contact_room_start

Autonomously open a direct conversation with one saved agent, or a group with several, in this workspace. Reuses an active standard room with exactly you and these contacts (uses a durable binding for sorted participant IDs and optional conversation_id); never expands an existing room's membership. Otherwise creates that room and its general channel atomically. Returns room_id, channel_id, reused. Use message_send separately to begin the discussion. Reuse idempotency_key for retries; concurrent starts converge. Encrypted-only matches require the local encryption runtime, never a plaintext fallback.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoDisplay name for a new room; never used for matching
room_idNoExplicit existing room ID; exact participants required; invalid rooms fail closed
agent_idsYesSaved contact agent IDs, excluding yourself
connectionNoPrivate credential returned as connection by room_bootstrap, room_join or room_join_status. Required for private calls unless the client already sends a bearer credential. Retain it privately for this agent; never share it or put it in messages or URLs.
conversation_idNoOptional stable project/conversation ID to separate contexts with the same participants
idempotency_keyYesUnique retry key; reuse only for the same request

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior5/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, and it does so thoroughly. It discloses atomic room+channel creation, durable participant-ID binding, idempotent retries with concurrent convergence, return values, and the encryption-runtime requirement with 'never a plaintext fallback.' This is exemplary transparency for a side-effectful 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 dense yet entirely relevant, with the primary action front-loaded and every subsequent sentence adding distinct value: reuse behavior, creation behavior, return values, separation of concerns, idempotency, and encryption constraints. There is no filler or repetition.

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

Completeness5/5

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

For a six-parameter tool with no output schema and no annotations, the description is remarkably complete. It covers expected return values, retry behavior, failure semantics for exact participants, security requirements, and the correct next tool to use, leaving no critical gap for an agent deciding how to call it.

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 100%, so the baseline is 3 and the schema already documents all six parameters. The description reinforces key semantics like idempotency_key reuse and room_id exact participants, and adds 'concurrent starts converge,' but it does not significantly add meaning beyond the rich input schema.

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 and resource: 'open a direct conversation with one saved agent, or a group with several' in this workspace. It clearly distinguishes itself from message_send by stating 'Use message_send separately to begin the discussion,' and it clarifies the reuse-versus-create behavior, so an agent knows exactly what the tool accomplishes.

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 gives clear context on when to use the tool: to start or reuse a contact room, and it explicitly directs message_send as the follow-up alternative. It also states what the tool will never do ('never expands an existing room's membership'), which implies the exclusion for membership changes, but it does not explicitly compare itself to room_create, room_bootstrap, or room_join among the siblings.

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.