Skip to main content
Glama
gobeyondidentity

@beyondidentity/mcp

Official

scim_list_groups

Read-only

Retrieve and filter groups through SCIM v2.0, returning displayName, externalId, members, and Beyond Identity extensions for identity management.

Instructions

List groups via the SCIM v2.0 protocol. Returns Group resources with displayName, externalId, members array, and Beyond Identity extensions. Permission groups cannot be created or modified via SCIM.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoSpecifies the desired maximum number of query results per page. A negative value is treated as 0, which indicates that the response should not contain any resources. Note that the response may include
filterNoFilter for list methods. Filters follow the SCIM grammar from [RFC 7644 Section 3.4.2.2](https://datatracker.ietf.org/doc/html/rfc7644#section-3.4.2.2).
startIndexNoThe 1-based index of the first query result.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.8/5.0
Behavior4/5

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

readOnlyHint=true is already declared, so the safety profile is covered; the description earns credit for adding the return shape (displayName, externalId, members, Beyond Identity extensions) and the permission-group limitation, which is real behavioral context not present in the annotations. It omits pagination/response-envelope behavior, which is a minor gap.

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?

Two sentences, zero filler: the first establishes the resource and protocol, the second covers the return payload and the key limitation. Front-loaded with the identity-relevant information.

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?

With no output schema, the description usefully enumerates the return fields, and annotations cover the read-only nature. For a zero-required-parameter list tool this is largely complete, though it could say more about how count/startIndex interact with the result paging.

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?

All three parameters (count, filter, startIndex) carry full descriptions in the schema, giving 100% coverage, and the description adds nothing about count semantics, filter grammar, or index behavior. With the schema doing all the work, the baseline of 3 applies.

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 (List) and resource (groups) and scopes it to the SCIM v2.0 protocol, which distinguishes it from the plain list_groups sibling. It also enumerates the returned Group fields, so the agent knows exactly what comes back. It stops short of naming an alternative explicitly, which keeps it below a 5.

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 usage (SCIM protocol, read-only listing) and adds a useful boundary note that permission groups cannot be created or modified via SCIM, which hints this listing covers non-permission groups. However, it never states when to prefer this over list_groups or get_groups, so the 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.