model_field_set_description
Set or update the description of a specific field within a model in Anki MCP, using the model name, field name, and field index for precise customization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldName | Yes | Name of the field | |
index | Yes | Index of the field | |
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"
},
"index": {
"description": "Index of the field",
"type": "number"
},
"modelName": {
"description": "Name of the model",
"type": "string"
}
},
"required": [
"modelName",
"fieldName",
"index"
],
"type": "object"
}