{
"name": "export_mode",
"description": "Export a specific mode's tokens in various formats (json, css, ios, android)",
"inputSchema": {
"type": "object",
"properties": {
"tokenset_id": {
"type": "string",
"description": "The ID of the tokenset"
},
"mode_id": {
"type": "string",
"description": "The ID of the mode to export"
},
"format": {
"type": "string",
"enum": ["json", "css", "ios", "android"],
"default": "json",
"description": "The export format (default: json)"
}
},
"required": ["tokenset_id", "mode_id"]
}
}