Skip to main content
Glama

delete_response

Remove a specific survey response by providing the survey ID and response ID to manage data in LimeSurvey MCP Server efficiently.

Instructions

Delete a response from a LimeSurvey survey.

Args: sid: The survey ID. response_id: The response ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
response_idYes
sidYes

Implementation Reference

  • main.py:292-302 (handler)
    The handler function for the 'delete_response' MCP tool. It is decorated with @mcp.tool() which registers it, and implements the logic by calling the LimeSurvey client's delete_response method via a context-managed client.
    @mcp.tool() def delete_response(sid: int, response_id: int) -> bool: """Delete a response from a LimeSurvey survey. Args: sid: The survey ID. response_id: The response ID. """ with get_client() as client: return client.delete_response(sid, response_id)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/edgarrmondragon/limesurvey-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server