model_field_remove
Remove a specified field from a model within Anki MCP by providing the model name and field name, streamlining model customization and maintenance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldName | Yes | Name of the field to remove | |
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 remove",
"type": "string"
},
"modelName": {
"description": "Name of the model",
"type": "string"
}
},
"required": [
"modelName",
"fieldName"
],
"type": "object"
}