Skip to main content
Glama

internal_squad_remove_users_from_internal_squad

Remove users from an internal squad by UUID, supporting bulk membership cleanup or offboarding.

Instructions

DELETE /api/internal-squads/{uuid}/bulk-actions/remove-users Delete users from internal squad Tags: Internal Squads Controller

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYes
confirmNoПодтверждение выполнения не-GET операции. Без confirm:true возвращается превью запроса (метод, URL, тело) и запрос не отправляется (см. MCP_CONFIRM).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, yet it only implies destructiveness via the HTTP DELETE verb. It says nothing about required permissions, reversibility, side effects on squad membership, or response behavior; the confirm/preview semantics live only in the schema, not the description.

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?

Short and front-loaded with the endpoint then the purpose, so nothing is buried. The auto-generated 'Tags: Internal Squads Controller' line is noise that does not earn its place.

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

Completeness2/5

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

For a destructive bulk-removal operation with no annotations, no output schema, and only 50% parameter coverage, this description is far too thin. It leaves open who the removed users are, what authorization is needed, and how this differs from the remove_many sibling.

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 50%, so the schema documents confirm while uuid is left bare. The path template '/internal-squads/{uuid}/...' does hint that uuid identifies the squad rather than the user, but the description never explains this, and it is silent on how the users to remove are specified despite having no user-list parameter in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource combination ('Delete users from internal squad') plus the underlying DELETE endpoint and path, so the operation is unambiguous on its own. However, it makes no attempt to distinguish itself from the near-identical sibling internal_squad_remove_many_users_from_internal_squad or from external_squad_remove_users_from_external_squad.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus the sibling remove_many variant, nor any prerequisite, permission, or scope information. The reader must infer usage entirely from the name.

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

Install Server

Other Tools