get_news
Retrieve school news from the N Lobby MCP Server by filtering categories, limiting results, and sorting by newest, oldest, or title for easy access to announcements and updates.
Instructions
Retrieve school news
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Filter by category (optional) | |
limit | No | Maximum number of news items to retrieve (optional, default: 10) | |
sort | No | Sort order: 'newest' (default), 'oldest', 'title-asc', 'title-desc' |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Filter by category (optional)",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of news items to retrieve (optional, default: 10)",
"minimum": 1,
"type": "number"
},
"sort": {
"description": "Sort order: 'newest' (default), 'oldest', 'title-asc', 'title-desc'",
"enum": [
"newest",
"oldest",
"title-asc",
"title-desc"
],
"type": "string"
}
},
"type": "object"
}