model_modelFieldRemove
Remove a specific field from an existing model in Anki flashcards using the MCP server, simplifying model customization and organization.
Instructions
Removes a field from an existing model.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fieldName | Yes | Name of the field to remove. | |
modelName | Yes | Name of the model to modify. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"fieldName": {
"description": "Name of the field to remove.",
"title": "Fieldname",
"type": "string"
},
"modelName": {
"description": "Name of the model to modify.",
"title": "Modelname",
"type": "string"
}
},
"required": [
"modelName",
"fieldName"
],
"type": "object"
}