model_field_rename
Rename a specific field within a named model in Anki MCP by providing the current and new field names. Streamline model updates for improved organization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modelName | Yes | Name of the model | |
newFieldName | Yes | New name for the field | |
oldFieldName | Yes | Current name of the field |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"modelName": {
"description": "Name of the model",
"type": "string"
},
"newFieldName": {
"description": "New name for the field",
"type": "string"
},
"oldFieldName": {
"description": "Current name of the field",
"type": "string"
}
},
"required": [
"modelName",
"oldFieldName",
"newFieldName"
],
"type": "object"
}