model_template_reposition
Reposition templates within a model on Anki MCP by specifying the model name, template name, and desired 0-based index for the new position.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes | New position for the template (0-based) | |
modelName | Yes | Name of the model | |
templateName | Yes | Name of the template to reposition |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"index": {
"description": "New position for the template (0-based)",
"type": "number"
},
"modelName": {
"description": "Name of the model",
"type": "string"
},
"templateName": {
"description": "Name of the template to reposition",
"type": "string"
}
},
"required": [
"modelName",
"templateName",
"index"
],
"type": "object"
}