model_field_add
Add a custom field to a specified model at a defined position using Anki MCP. Enhance model structure by inserting fields where needed.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldName | Yes | Name of the field to add | |
index | Yes | Position to insert the field (0-based) | |
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 to add",
"type": "string"
},
"index": {
"description": "Position to insert the field (0-based)",
"type": "number"
},
"modelName": {
"description": "Name of the model",
"type": "string"
}
},
"required": [
"modelName",
"fieldName",
"index"
],
"type": "object"
}