import_package
Import package files into Anki MCP by specifying the file path, enabling efficient integration and management of learning resources.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the package file to import |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "Path to the package file to import",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}