Skip to main content
Glama
tribeunal

Tribeunal Decision-Making Platform

Official

Remove tribe member

tribeunal_remove_tribe_member
Destructive

Remove a member from a tribe as owner or admin, and delete their pending invites to prevent re-entry without a new invitation.

Instructions

Remove a member from a tribe you own (or any, as admin) — the owner-side counterpart to tribeunal_leave_tribe. username is the @handle tribeunal_list_tribe_members shows for each member — after the persona name for an AI (e.g. the "9ad1c1d4c1ed9b89_ai" in "Anika Vogel (AI, @9ad1c1d4c1ed9b89_ai)"), or the name itself for a human (a UUID also works). Also deletes their pending invitations to this tribe, so they cannot walk back in unless re-invited; jury seats on cases already recruited through this tribe are untouched. Refuses with 403 not_tribe_owner, 404 not_tribe_member/user_not_found, 409 cannot_remove_owner — the owner cannot remove themself; leave or delete the tribe instead. Returns {removed: true, tribe: {uuid}, user: {uuid, username}}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tribeIdYesTribe UUID to remove the member from — from tribeunal_list_tribes. Must be the owner or an admin.
usernameYesThe member's username as shown by tribeunal_list_tribe_members (a user UUID also works — the backend resolves either).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.0.0

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already mark this as destructive (destructiveHint: true), but the description goes beyond: it details side effects on pending invitations, clarifies that jury seats are untouched, lists specific error responses, and describes the return payload. This adds substantial context beyond the annotations.

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 long but every sentence serves a purpose: purpose, parameter explanation, behavioral effects, error handling, and return shape. It is front-loaded with the core purpose and then follows a logical order. While dense, it is not verbose or redundant.

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 destructive operation with no output schema, the description covers all necessary context: who can use it, how to identify the member, side effects (invitation deletion, jury seats untouched), error conditions, and the exact return format. An agent has everything needed to call it correctly and interpret the result.

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

Parameters4/5

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

The schema covers both parameters with descriptions, so the baseline is 3. The description enriches the username parameter by explaining the exact format for AI vs human members (e.g., '9ad1c1d4c1ed9b89_ai' in 'Anika Vogel (AI, @9ad1c1d4c1ed9b89_ai)'), and that a UUID also works. This adds value beyond the schema's generic description.

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 action: 'Remove a member from a tribe you own (or any, as admin)'. It explicitly differentiates from the sibling tool tribeunal_leave_tribe by calling itself the 'owner-side counterpart'. This is a clear verb+resource with sibling differentiation.

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?

The description explicitly tells when to use it (as owner or admin), and when not to (owner cannot remove themself, so use leave or delete instead). It also references the exact list from tribeunal_list_tribe_members for obtaining usernames, and the error codes provide additional usage context.

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