list_rooms
List public rooms and your private rooms.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List public rooms and your private rooms.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds useful scoping by specifying it lists public and the user's private rooms, but it does not disclose details such as whether results are paginated, sorted, or limited in any way. This is acceptable for a simple list operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single efficient sentence that front-loads the verb and resource. Every word contributes meaning, with no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only list operation with no output schema, the description is sufficiently complete. It clearly states what is returned (rooms) and the scope (public and the user's own private rooms). Nothing essential for invoking the tool correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema is empty, so there are no parameters to document. Per baseline rules, a 0-parameter tool gets a 4. The description's mention of 'public rooms and your private rooms' clarifies the return scope but does not need to add parameter-level detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and a clear resource ('rooms'), and differentiates the scope by distinguishing public rooms from 'your private rooms.' This clearly separates it from sibling tools like list_threads, which lists a different resource.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: when an agent needs to see available rooms, this is the tool. However, it gives no explicit guidance on when to prefer this over alternatives or any exclusions, leaving the context to be inferred from the operation's nature and sibling names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.