Skip to main content
Glama

delete_group

Remove a question group from a LimeSurvey survey by specifying the survey ID and group ID to manage survey structure.

Instructions

Delete a group from a LimeSurvey survey.

Args: sid: The survey ID. gid: The group ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sidYes
gidYes

Implementation Reference

  • main.py:449-459 (handler)
    The main handler function for the 'delete_group' tool. It is decorated with @mcp.tool() which registers it in FastMCP with the name 'delete_group' based on the function name. The function deletes a question group from a survey by calling the underlying LimeSurvey client's delete_group method.
    @mcp.tool() def delete_group(sid: int, gid: int) -> bool: """Delete a group from a LimeSurvey survey. Args: sid: The survey ID. gid: The group ID. """ with get_client() as client: return client.delete_group(sid, gid)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/edgarrmondragon/limesurvey-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server