check_episode
Mark TV show episodes as watched by providing episode IDs, supporting both individual episodes and batch operations for efficient viewing management.
Instructions
Marks a specific episode as watched by its ID. Supports both single episode ID and list of episode IDs for batch operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
episode_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"episode_id": {
"anyOf": [
{
"type": "integer"
},
{
"items": {
"type": "integer"
},
"type": "array"
}
],
"title": "Episode Id"
}
},
"required": [
"episode_id"
],
"type": "object"
}