Skip to main content
Glama

address_book

Lists the agents you can reach — your own agents AND agents shared to you from other owners. To MESSAGE any of them, use the message_teammate tool (it delivers AND wakes the recipient). Do NOT use send_message for an agent — that path does not wake them and the message can strand. Each entry has three identity fields, and it matters which you use: • name — the agent's DISPLAY NAME, for reading only. Never address by it (names are not unique and change). • address (name@owner.org) — a human-readable 3-part address showing the agent's OWNER and ORGANIZATION. It can change (renames), so use it for display, NOT for stored references. • agentId (agt_...) — the OPAQUE, STABLE id. This is the safe, unambiguous way to identify and message an agent: pass it as message_teammate's to, and use it whenever you store or act on a reference later. It never changes. Rule of thumb: read the name, use the agentId to message and to store. Also returns online/alive/listening status, brandKey, and ownerAddress (self@<owner>) for messaging the owning human directly. Takes no arguments.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A5/5.0
Behavior5/5

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

With no annotations provided, the description fully carries the behavioral disclosure burden. It explains semantic nuances beyond a simple list: `address` can change due to renames, `agentId` is stable, and `send_message` can strand messages because it doesn't wake the recipient. It also discloses what the tool returns (status fields, brandKey, ownerAddress) and explicitly states it takes no arguments. This is rich, honest behavioral context.

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 long but every sentence serves a purpose — no filler. It is front-loaded with the core function, uses bullet points for the three identity fields, and ends with a clear rule of thumb. The length is justified by the need to explain subtle identity semantics and cross-tool warnings.

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?

Given no output schema, the description compensates by detailing the returned fields: identity fields (`name`, `address`, `agentId`), status indicators (`online`/`alive`/`listening`), `brandKey`, and `ownerAddress`. It also covers usage context, cross-tool interactions, and storage best practices. The tool is simple (no args) and the description fully equips an agent to use it correctly.

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

Parameters5/5

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

The tool has zero parameters and the schema is an empty object. The description explicitly states 'Takes no arguments,' which is the only relevant semantic. Per the rubric, 0 params gets a baseline of 4, and this description adds an explicit confirmation, so a 5 is appropriate.

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: 'Lists the agents you can reach — your own agents AND agents shared to you from other owners.' It clearly distinguishes itself from messaging tools by directing users to `message_teammate` for messaging, and it explicitly contrasts with `send_message`. The scope is unambiguous, covering both own and shared agents.

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?

Provides explicit when-to-use guidance: to see reachable agents. It also gives concrete alternatives and exclusions: 'To MESSAGE any of them, use the `message_teammate` tool' and 'Do NOT use send_message for an agent — that path does not wake them.' Additionally, it prescribes which identity field to use for different purposes ('read the name, use the `agentId` to message and to store'), which is actionable usage direction.

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

A3.8/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, with detailed descriptions that prevent confusion. The main ambiguity arises from send_message vs. the referenced but missing message_teammate tool, and add_column vs. update_surface for schema changes, but these are mostly clarified by the descriptions.

Naming Consistency4/5

The naming convention is predominantly verb_noun with underscores (e.g., create_workspace, list_rows, update_doc). Exceptions like 'search' and 'address_book' (no noun) and the two-word 'react_to_comment' are minor deviations in an otherwise consistent pattern.

Tool Count1/5

With 68 tools, the surface is far too large for an MCP server, exceeding the 50+ threshold for extreme mismatch. This volume creates excessive selection overhead for agents and suggests the tool set could be consolidated or split into focused servers.

Completeness3/5

The server covers broad functionality across workspaces, docs, tables, HTML, comments, files, webhooks, and billing. However, notable gaps exist: the explicitly referenced message_teammate tool is missing (preventing agent-to-agent waking), and there is no create/upload file tool or create API key tool, which creates dead ends in workflows.