Skip to main content
Glama

ungroup_players

Removes specified follower players from a leader's grouping while keeping each player individually accessible.

Instructions

Remove one or more followers from a leader's group. Leader and followers remain reachable individually.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
leaderYes
followersYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

The description discloses a meaningful side effect ('Leader and followers remain reachable individually'), but with no annotations, it does not cover potential error cases, idempotency, or behavior when the leader or followers do not exist.

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 two concise sentences with no redundant or extraneous information, making it easy to parse.

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

Completeness3/5

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

The description covers the basic purpose and a key behavioral outcome, but the lack of parameter semantics and explicit usage distinctions leaves minor gaps for an agent deciding how to call it correctly.

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

Parameters2/5

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

The schema provides no descriptions for 'leader' or 'followers', and the description only repeats the property names without specifying the expected identifier format or how followers are referenced, so it adds little beyond 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 description clearly states the action ('Remove') and the object ('one or more followers from a leader's group'), and the plural form 'ungroup_players' distinguishes it from the singular sibling 'ungroup_player'.

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 implies use when removing followers from a group but does not explicitly contrast with the sibling 'ungroup_player' or other grouping tools, leaving the selection criteria partially implicit.

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