Edit Groups
Skill for modifying Lightdash organization groups and their memberships.
Purpose
Provides tools for administrative tasks related to organization groups, including creation, updates, deletion, and managing group memberships.
Tools
Wraps the following MCP tools from the lightdash server:
- •
lightdash_tools__create_group - •
lightdash_tools__update_group - •
lightdash_tools__delete_group - •
lightdash_tools__add_user_to_group - •
lightdash_tools__remove_user_from_group
Safety Mode Compliance
- •Write Tools:
create_group,update_group,add_user_to_group,remove_user_from_group. - •Write-Destructive Tools:
delete_group. - •Constraints:
- •Write tools MUST ONLY be used when
LIGHTDASH_TOOL_SAFETY_MODEis set towriteorwrite-destructive. - •
delete_groupMUST ONLY be used whenLIGHTDASH_TOOL_SAFETY_MODEis set towrite-destructive.
- •Write tools MUST ONLY be used when
Behavior
- •Safety Check: Before performing any state-changing action, check the environment variable
LIGHTDASH_TOOL_SAFETY_MODE. Inform the user if the action is blocked by the current safety mode. - •Discovery: Refer to the
read-groupsskill to find the correctgroupUuidbefore attempting updates or deletion. - •User Verification: When adding users to a group, verify the
userUuidexists first using theread-usersskill.
Rules
- •NEVER delete a group without explicit confirmation from the user.
- •ALWAYS verify the
groupUuidbefore performing any update or deletion.