set_language_properties
Configure language-specific properties in LimeSurvey by specifying a language ID and desired settings 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 MCP tool handler for 'set_language_properties'. It uses the LimeSurvey client to set the properties for a given language ID. The @mcp.tool() decorator handles registration and schema generation from type hints and docstring.@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)