Skip to main content
Glama

mesh_unobserve_lobby

Stop lobby observation and all room taps while preserving the recorded transcript. No-op if not currently observing; observation resumes after the next hello.

Instructions

Stop mesh_observe_lobby: kills the central watch and every room tap, including rooms you are in (without saying participant_left -- mesh_leave_room or mesh_goodbye do that). The recorded transcript is NOT cleared -- mesh_lobby_transcript still reads what was already seen. No-op if not currently observing. A later mesh_hello call (or mesh_observe_lobby itself) restarts it -- this only opts out for now, it isn't sticky across the next mesh_hello.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.28.7

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description fully discloses the behavioral traits: it kills the central watch and all room taps, does not send participant_left (distinguishing from alternative tools), does not clear the transcript (mesh_lobby_transcript still works), and is not sticky (a later mesh_hello restarts it). This is exceptional transparency for a tool with zero annotations.

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 concise and front-loaded with the core purpose. It packs a lot of behavioral detail into a short paragraph, but the multiple clauses might be slightly dense. Still, every sentence earns its place by conveying critical edge cases and exclusions.

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 zero-parameter tool with no output schema, the description covers all essential aspects: what it does, its side effects, its no-op condition, its non-sticky nature, and the alternative tools. An agent has everything needed to invoke it correctly and predict outcomes.

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?

The input schema has zero parameters Daw, schema coverage is 100%, and the description adds no parameter-specific semantics because there are none. Baseline for 0 params is 4, and the description correctly explains that no arguments are needed. Nothing is missing.

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 that the tool stops observing the lobby, kills all room taps, and is the inverse of mesh_observe_lobby. It differentiates itself from related tools (mesh_leave_room, mesh_goodbye) and is specific about the resource (lobby observation). No ambiguity about what it does.

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

Usage Guidelines5/5

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

The description explicitly explains when to use it (to stop observing), when not to (if you want to leave a room, use mesh_leave_room or mesh_goodbye instead), and the no-op behavior if not observing. It also clarifies the sticky semantics, which is crucial for lifecycle management.

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