api_reflect
Retrieve and reflect all actions or specific scopes within the Anki MCP server for API integration and resource management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actions | No | List of action names to reflect, or null for all | |
scopes | Yes | Scopes to reflect |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actions": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"description": "List of action names to reflect, or null for all"
},
"scopes": {
"description": "Scopes to reflect",
"items": {
"enum": [
"actions"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"scopes"
],
"type": "object"
}