Skip to main content
Glama

access_management.get_groups

access_management_get_groups
Read-only

Fetch Sisense user groups, either a specific group by name or the full list. Returns group details such as ID, name, and default role.

Instructions

Retrieve groups — one named group, or all of them. Fetches the groups defined on the Sisense server. With name the API filters server-side to that group; without it, every group is returned. One row per group. Returns: list[dict[str, Any]] | dict[str, Any] A list of raw group objects as returned by the API (each with _id, name, defaultRole, and related fields). Without name, an empty list means the server genuinely has …

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoGroup name to filter by. Omit for all groups.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.1.2

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint and non-destructive, so the description correctly adds value beyond them: it discloses server-side filtering, one row per group, raw API objects with key fields, and the meaning of an empty list. This is exactly the behavioral detail an agent needs beyond the safety hints.

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 focused and front-loaded, with each sentence serving a purpose: scope, filtering behavior, output shape, and empty-list semantics. No filler or redundant restatement of the tool name is present.

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

Completeness5/5

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

For a tool with one optional parameter, no output schema, and supported by read/write annotations, the description covers the return type, key returned fields, filtering behavior, and edge-case meaning of an empty result. Nothing needed for correct invocation or interpretation is missing.

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

Parameters4/5

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

Schema coverage is 100% for the single optional parameter, so the baseline is 3. The description adds extra meaning by clarifying the server-side filter behavior and tying the parameter to the return shape ('one row per group'), going slightly beyond the schema's one-line description.

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 identifies the action ('Retrieve'), the resource ('groups defined on the Sisense server'), and the input-dependent scope ('one named group, or all of them'). It also distinguishes this tool from sibling group-related tools like use or role tools by specifying exactly what kind of group data it returns.

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

Usage Guidelines4/5

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

The description gives clear usage context: provide `name` for a server-side filtered lookup, omit it to fetch every group. It does not explicitly name sibling alternatives or say when not to use this tool, but the boundary between 'one group' and 'all groups' is unambiguous.

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