model_field_set_font_size
Adjust the font size for a specific field within a model in Anki MCP. Specify the model name, field name, and desired font size to customize the display.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldName | Yes | Name of the field | |
fontSize | Yes | Font size to set | |
modelName | Yes | Name of the model |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fieldName": {
"description": "Name of the field",
"type": "string"
},
"fontSize": {
"description": "Font size to set",
"type": "number"
},
"modelName": {
"description": "Name of the model",
"type": "string"
}
},
"required": [
"modelName",
"fieldName",
"fontSize"
],
"type": "object"
}