Skip to main content
Glama
edgarrmondragon

LimeSurvey MCP Server

add_participants

Add participants to a LimeSurvey survey by providing survey ID and participant data to populate your study or research.

Instructions

Add participants to a LimeSurvey survey.

Args:
    sid: The survey ID.
    participant_data: The participant data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sidYes
participant_dataYes

Implementation Reference

  • main.py:558-570 (handler)
    The handler function for the 'add_participants' MCP tool. It is decorated with @mcp.tool() for registration and executes the tool logic by adding participants to a LimeSurvey survey using the client.
    @mcp.tool()
    def add_participants(
        sid: int, participant_data: list[dict[str, Any]]
    ) -> list[dict[str, Any]]:
        """Add participants to a LimeSurvey survey.
    
        Args:
            sid: The survey ID.
            participant_data: The participant data.
        """
        with get_client() as client:
            return client.add_participants(sid, participant_data)

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