mark_news_as_read
Update news article status to 'read' using the article ID, ensuring users stay informed and organized within the N Lobby MCP Server.
Instructions
Mark a news article as read
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the news article to mark as read |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the news article to mark as read",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}