set_language_properties
Configure language-specific settings in LimeSurvey by specifying properties for a given language ID to customize survey localization.
Instructions
Set LimeSurvey language properties.
Args:
lid: The language ID.
properties: The properties to set.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lid | Yes | ||
| properties | Yes |
Implementation Reference
- main.py:546-556 (handler)The handler function for the 'set_language_properties' tool, decorated with @mcp.tool() which registers it in the FastMCP instance. It uses a LimeSurvey client to set the language properties.@mcp.tool() def set_language_properties(lid: str, properties: dict[str, Any]) -> bool: """Set LimeSurvey language properties. Args: lid: The language ID. properties: The properties to set. """ with get_client() as client: return client.set_language_properties(lid, properties)