Backlog MCP Server

get_notifications

Retrieve a list of notifications from Backlog by specifying ID range, count, sorting, and read status to manage project updates efficiently.

Instructions

Returns list of notifications

Input Schema

NameRequiredDescriptionDefault
alreadyReadNoWhether to include already read notifications
countNoNumber of notifications to retrieve
maxIdNoMaximum notification ID
minIdNoMinimum notification ID
orderNoSort order
resourceAlreadyReadNoWhether to include notifications for already read resources

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "alreadyRead": { "description": "Whether to include already read notifications", "type": "boolean" }, "count": { "description": "Number of notifications to retrieve", "type": "number" }, "maxId": { "description": "Maximum notification ID", "type": "number" }, "minId": { "description": "Minimum notification ID", "type": "number" }, "order": { "description": "Sort order", "enum": [ "asc", "desc" ], "type": "string" }, "resourceAlreadyRead": { "description": "Whether to include notifications for already read resources", "type": "boolean" } }, "type": "object" }
ID: lktnbgdbjl