delete_quota
Remove a quota from a LimeSurvey survey to manage participant limits or restrictions.
Instructions
Delete a LimeSurvey quota.
Args:
id: The quota ID.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- main.py:646-655 (handler)The handler function for the 'delete_quota' tool. It is decorated with @mcp.tool() which also serves as registration. The function takes a quota ID and uses the LimeSurvey client to delete the quota.@mcp.tool() def delete_quota(id: int) -> bool: """Delete a LimeSurvey quota. Args: id: The quota ID. """ with get_client() as client: return client.delete_quota(id)