Skip to main content
Glama
hermoso-ai

Hermoso

Official

Remove a teammate

remove_member
DestructiveIdempotent

Revoke a brand workspace member's access by email. Confirm the exact person with the user first, then pass confirm:true to remove them.

Instructions

Remove a member from this brand workspace by email — they lose access (you can re-invite them later). Confirm the exact person with the user, then call with confirm:true.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesthe member’s email
confirmNoREQUIRED true

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.161

TDQS

A4/5.0
Behavior4/5

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

The description adds meaningful behavioral context beyond the annotations: 'they lose access' explains the destructive consequence, and '(you can re-invite them later)' clarifies reversibility. It also specifies the confirmation requirement. This goes beyond the bare destructiveHint and readOnlyHint flags, with no contradiction.

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?

Two tightly written sentences. The first delivers the core action and consequence; the second provides the required confirmation workflow. No filler, and the most important information is front-loaded.

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

Completeness4/5

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

For a simple two-parameter destructive tool, the description covers the action, effect, reversibility, and the confirm requirement. With annotations already conveying destructiveness and idempotency, the only minor gap is what happens for a non-existent email or error cases, but this is not critical for a tool this straightforward.

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 description coverage is 100%, so the schema already documents email and confirm thoroughly. The description does reinforce that email identifies the member and that confirm must be true, but it does not add significant new parameter semantics beyond the structured definitions.

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 states a specific verb and resource: 'Remove a member from this brand workspace by email'. It clearly distinguishes from sibling tools like invite_member and set_role by emphasizing removal and the loss of access, making the tool's purpose unambiguous.

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

Usage Guidelines3/5

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

The description gives useful context for when to use the tool (removing a member, with reversibility noted) and a clear workflow: confirm the person with the user, then pass confirm:true. However, it does not explicitly name alternatives or state when not to use this tool versus siblings like set_role or invite_member.

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

Deploy Server

Other Tools