get_media_files_names
Extract and list media file names matching a specific pattern from the Anki MCP server. Specify the pattern (e.g., "*.jpg") to retrieve desired files efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pattern | Yes | Pattern to match media file names (e.g., "*.jpg", "*audio*") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pattern": {
"description": "Pattern to match media file names (e.g., \"*.jpg\", \"*audio*\")",
"type": "string"
}
},
"required": [
"pattern"
],
"type": "object"
}