delete_quota
Remove a LimeSurvey quota by specifying its ID to manage survey response limits and ensure efficient data handling in LimeSurvey MCP Server.
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-654 (handler)The handler function for the 'delete_quota' tool. It is decorated with @mcp.tool() for registration and executes the deletion of a quota using the LimeSurvey client.@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)