import_group
Add a predefined group to a LimeSurvey survey by importing its file content and specifying a survey ID. Simplify survey structure management directly from the LimeSurvey MCP Server.
Instructions
Import a group to a LimeSurvey survey.
Args:
sid: The survey ID.
group_file: The group file content (base64 encoded).
group_name: The name for the imported group.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
group_file | Yes | ||
group_name | No | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"group_file": {
"title": "Group File",
"type": "string"
},
"group_name": {
"default": null,
"title": "Group Name",
"type": "string"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid",
"group_file"
],
"title": "import_groupArguments",
"type": "object"
}