model_modelFieldNames
Retrieve field names for a specific model in Anki flashcards using the Anki-MCP server. Input the model name to generate a structured list of fields for efficient data management and organization.
Instructions
Gets the list of field names for the provided model name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modelName | Yes | The name of the model. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"modelName": {
"description": "The name of the model.",
"title": "Modelname",
"type": "string"
}
},
"required": [
"modelName"
],
"type": "object"
}