Skip to main content
Glama

Add Team Phone

add_team_phone
DestructiveIdempotent

Add a teammate's (or the owner's) cell to the phone system's team ring group so it rings before Kai answers. Idempotent — a cell already in the group reports ring_group already_member. Owners and admins are also registered on the admin roster, so calling the business line from that cell reaches the admin secretary; a member only rings. The business's own forwarded-from office line is refused (forwarding_loop) because ringing it would bounce the call straight back. Requires the phone system to be set up first (set_up_phone_system). Mirrors POST /api/v1/phone-system action=add_ring_group_member.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoDisplay name for this teammate (optional).
roleNomember only rings; owner and admin also get admin-secretary access from this cell. Defaults to admin.
business_idNoBusiness ID (required when the token can access multiple businesses).
phone_numberYesThe cell to add, US format (e.g. (908) 555-1234 or +19085551234).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeNoPresent when success is false.
errorNoPresent when success is false
memberNo
successYesWhether the tool completed successfully
business_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.4/5.0
Behavior5/5

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

Annotations already cover idempotency, mutation, and open-world hints, and the description adds substantial context beyond them: the exact already_member and forwarding_loop error outcomes, the admin-secretary routing difference, and the refusal of the business's own forwarded line. This materially enriches what an agent knows before calling.

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?

Six sentences, each carrying distinct information (purpose, idempotency, role behavior, loop refusal, prerequisite, API mirror), with the purpose front-loaded. Slightly redundant with the schema's role description, and the API mirror sentence is marginal, but nothing is filler.

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 4-parameter mutation tool with full schema coverage, a rich annotations block, and an output schema, the description covers purpose, edge-case error conditions, prerequisites, and role semantics. Return-value explanation is unnecessary given the output schema exists, and no gap an agent needs to invoke correctly is missing.

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 coverage is 100%, so the baseline is 3; the schema already documents the role enum semantics and phone format. The description adds one genuinely parameter-level fact — that the business's forwarded office line is refused for phone_number — but otherwise mostly restates role behavior already present in the 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 first sentence states a specific verb ('Add'), a specific resource ('the phone system's team ring group'), and the operational goal (rings before Kai answers). It clearly differentiates from siblings like attach_number and set_owner_phone by scoping this tool to the ring-group membership action.

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 provides explicit context: it covers both teammates and owners/admins, notes idempotency behavior, and names the prerequisite set_up_phone_system. It stops short of explicitly contrasting with siblings (e.g., when to use set_owner_phone instead), so it lacks an exclusion-based routing statement.

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.