Skip to main content
Glama
edgarrmondragon

LimeSurvey MCP Server

set_question_properties

Configure question settings in LimeSurvey surveys by specifying properties like formatting, validation, or display options to customize survey questions.

Instructions

Set LimeSurvey question properties.

Args:
    qid: The question ID.
    properties: The properties to set.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qidYes
propertiesYes

Implementation Reference

  • main.py:497-506 (handler)
    The handler function for the 'set_question_properties' MCP tool, registered via the @mcp.tool() decorator. It uses the LimeSurvey client to set properties for a given question ID.
    @mcp.tool()
    def set_question_properties(qid: int, properties: dict[str, Any]) -> bool:
        """Set LimeSurvey question properties.
    
        Args:
            qid: The question ID.
            properties: The properties to set.
        """
        with get_client() as client:
            return client.set_question_properties(qid, properties)

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