delete_question
Remove a specific question from a LimeSurvey survey by providing the question ID using the MCP client integration.
Instructions
Delete a question from a LimeSurvey survey.
Args:
    qid: The question ID.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| qid | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "qid": {
      "title": "Qid",
      "type": "integer"
    }
  },
  "required": [
    "qid"
  ],
  "title": "delete_questionArguments",
  "type": "object"
}