add_group
Create and manage survey groups in LimeSurvey by specifying the survey ID and group data. Simplify survey organization and structure with this MCP server tool.
Instructions
Add a group to a LimeSurvey survey.
Args:
    sid: The survey ID.
    group_data: The group data.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| group_data | Yes | ||
| sid | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "group_data": {
      "additionalProperties": true,
      "title": "Group Data",
      "type": "object"
    },
    "sid": {
      "title": "Sid",
      "type": "integer"
    }
  },
  "required": [
    "sid",
    "group_data"
  ],
  "title": "add_groupArguments",
  "type": "object"
}