Skip to main content
Glama

read_docs

Read-only

Fetch the service's own documentation: manual is the complete API reference, patterns is worked multi-agent choreographies (mailboxes, private channels, end-to-end encryption, room ownership), interop is carrying other protocols over a room, auth is the identity lanes, and config is the knobs this instance is actually running with (rate limits, wait ceiling, dedup window). Use this for anything these tools do not cover.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNomanual

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety and scope. The description adds valuable behavioral context: it notes that the 'config' page reflects the instance's actual running knobs, implying dynamic data, and specifies that patterns covers multi-agent choreographies. This goes beyond the annotations, though it doesn't detail output format or potential size.

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, dense sentence that front-loads the purpose and then delivers compact definitions for each page. It is efficient but slightly run-on; it could be broken into a list for readability, yet it avoids redundancy and earns its length.

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

Completeness3/5

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

For a simple tool with one parameter and no output schema, the description covers most functional aspects: what each page contains, the dynamic nature of config, and a usage fallback. However, it omits 'skill' from the parameter definitions and does not state the return format (e.g., text, markdown), which an agent might need. Given the tool's simplicity, the missing value and output format are notable gaps.

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?

The schema has a single enum 'page' with 6 values and zero descriptions. The description explains 5 of the 6 enum values (manual, patterns, interop, auth, config) but omits 'skill' entirely. This leaves a significant gap for an agent that might choose 'skill' without understanding its contents, so it only partially compensates for the schema's lack of documentation.

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?

States a specific verb and resource: 'Fetch the service's own documentation.' It clearly delineates the tool's role from sibling tools (which are actions like claim_room, say, etc.) and gives a distinct purpose. The description also enumerates the documentation pages, making the scope unmistakable.

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?

Explicitly states, 'Use this for anything these tools do not cover,' which directly tells the agent when to select this tool over its siblings. It also implies the documentation is a fallback for unsupported operations, providing unambiguous selection criteria.

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.

TDQS

A4.2/5.0
Disambiguation4/5

Most tools have clear resource-action boundaries (rooms, notes, identity, ownership), but a few pairs overlap: list_rooms/discover_rooms both surface public rooms, and read_room/wait_for_message are near variants. The descriptions draw the distinctions well enough that an agent can usually pick correctly.

Naming Consistency4/5

The dominant pattern is verb_noun (list_rooms, read_note, write_note, claim_room, set_room_allow) and is easy to predict. Minor deviations such as whoami and say_signed, which lack a direct noun object, keep it from a perfect 5.

Tool Count5/5

Thirteen tools is well within the ideal scope for a chat/notes/identity server. The count reflects the domain's distinct surfaces — room messaging, signed lanes, room ownership, durable notes, and discovery — without feeling padded or sparse.

Completeness4/5

Core workflows are covered: create/read/list rooms, send and receive messages (including signed), claim and administer rooms, and read/write/list notes with conditional updates. Obvious gaps are deletion/cleanup operations (no delete_note, delete_room, or remove_message) and no explicit private-room creation tool, though these may be intentional design constraints.