Skip to main content
Glama
gobeyondidentity

@beyondidentity/mcp

Official

scim_create_group

Create a SCIM group with a required displayName. Optionally add existing users as members and include a description; reserved permission group names are not allowed.

Instructions

Create a group via SCIM. Requires displayName. Cannot use reserved permission group names. Optionally include members and description. All member IDs must reference existing users.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
membersNoThe list of the group's members. Please note that only users can be added as members. If a non-existing user is specified, the endpoint will return a 404 error.
schemasYesThe list of schemas used to define the group. This must contain the core Group schema ("urn:ietf:params:scim:schemas:core:2.0:Group") and may include the custom Beyond Identity Group schema extension
displayNameYesThe unique display name of the group. This name is used for display purposes.
urn_scim_schemas_extension_byndid_1.0_GroupNoThe Beyond Identity Group schema extension.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.5/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does disclose useful traits: rejected reserved names, a 404 for non-existent member IDs, and the optional/required split. It omits permission/auth requirements, name-collision behavior, and what the response returns, leaving meaningful gaps for a write operation.

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?

Four short sentences, front-loaded with the action and the required field, with each constraint earning its place. "Requires displayName" partly restates the schema's required array, which is the only mild redundancy.

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 4-parameter SCIM write with nested member objects and no output schema, the definition covers the constraints an agent needs to construct a valid call. It is missing auth/permission context and any note on the extension schema's optionality, but it is close to complete.

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 members, schemas, displayName and the extension object. The description reinforces the required/optional split and the existing-user constraint on members but adds no syntax or format detail beyond the schema, so the baseline 3 is right.

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 precise verb+resource ("Create a group via SCIM") and the protocol qualifier helps separate it from the sibling create_group. It stops short of explicitly contrasting with that sibling, but the action and object are 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?

Gives concrete preconditions: displayName is required, reserved permission group names are disallowed, members must reference existing users. However, it never states when to choose this over the sibling create_group or add_group_users, so routing guidance is only implied.

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