Skip to main content
Glama

add_users_to_permission_group

Add one or more users to a permission group in a specified workspace using group ID and user IDs.

Instructions

Add one or more users to a permission group.

workspace_id: target workspace ID — get available IDs from list_workspaces()

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
group_idYes
user_idsYes
workspace_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.18

TDQS

B3/5.0
Behavior2/5

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

The annotations (readOnlyHint=false, destructiveHint=false) are minimal and do not convey side effects. The description does not disclose whether it is idempotent, what happens if a user is already a member, or any impact on existing permissions. The burden falls on the description, and it is largely silent.

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 extremely concise and to the point. The single sentence plus the workspace_id hint contains no fluff and every sentence contributes useful information.

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?

Given the simple nature of the operation, the description omits crucial context such as expected format of user_ids (array of strings? email addresses?), behavior on duplicate membership, and whether the operation is idempotent. It is not complete enough for an agent to call without additional assumptions.

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?

Only workspace_id is explained (with a pointer to list_workspaces()). group_id and user_ids are left entirely to the schema, which provides no descriptions. With 0% schema coverage, the description adds little value for these parameters.

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?

The description clearly states the action: adding users to a permission group. It differentiates from the sibling tool 'remove_user_from_permission_group' and is unambiguous about the core operation.

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 provides a helpful hint for obtaining workspace IDs via list_workspaces(), but it does not explicitly contrast with alternatives (e.g., when to use this vs. invite_to_workspace or giving permissions) or mention any conditions or caveats for use.

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