activate_survey
Activate a LimeSurvey survey by providing its survey ID to make it available for respondents to access and complete.
Instructions
Activate a LimeSurvey survey.
Args:
sid: The survey ID.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sid | Yes |
Implementation Reference
- main.py:402-410 (handler)The handler function for the 'activate_survey' MCP tool. It uses the LimeSurvey client to activate the survey identified by sid.@mcp.tool() def activate_survey(sid: int) -> bool: """Activate a LimeSurvey survey. Args: sid: The survey ID. """ with get_client() as client: return client.activate_survey(sid)