set_group_properties
Configure group properties in LimeSurvey by specifying the group ID and desired properties. Simplify survey management with direct property updates.
Instructions
Set LimeSurvey group properties.
Args:
gid: The group ID.
properties: The properties to set.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gid | Yes | ||
| properties | Yes |
Implementation Reference
- main.py:461-471 (handler)The handler function for the 'set_group_properties' MCP tool, registered via the @mcp.tool() decorator. It executes the tool logic by calling the LimeSurvey client's set_group_properties method using a context-managed client instance.@mcp.tool() def set_group_properties(gid: int, properties: dict[str, Any]) -> bool: """Set LimeSurvey group properties. Args: gid: The group ID. properties: The properties to set. """ with get_client() as client: return client.set_group_properties(gid, properties)