set_quota_properties
Configure survey response limits by modifying quota properties in LimeSurvey to control data collection parameters.
Instructions
Set LimeSurvey quota properties.
Args:
id: The quota ID.
properties: The properties to set.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| properties | Yes |
Implementation Reference
- main.py:657-666 (handler)The MCP tool handler for 'set_quota_properties'. It retrieves a LimeSurvey client and calls set_quota_properties on it to update the quota with the given ID using the provided properties.@mcp.tool() def set_quota_properties(id: int, properties: dict[str, Any]) -> bool: """Set LimeSurvey quota properties. Args: id: The quota ID. properties: The properties to set. """ with get_client() as client: return client.set_quota_properties(id, properties)