markContentSeen
Mark content items as seen after posting to track viewed YouTube videos, blog posts, and GitHub releases across sessions.
Instructions
Mark a content item as seen AFTER posting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"type": "string"
},
"type": {
"enum": [
"youtube",
"blog",
"release"
],
"type": "string"
}
},
"required": [
"id",
"type"
],
"type": "object"
}