test_calendar_endpoints
Validate personal and school calendar endpoints by specifying date ranges to ensure accurate data retrieval and functionality in the N Lobby MCP Server environment.
Instructions
Test both personal and school calendar endpoints
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_date | No | Start date in YYYY-MM-DD format (optional). If only from_date is provided, it will be treated as a single day. | |
to_date | No | End date in YYYY-MM-DD format (optional). Must be at least 1 day after from_date when both are provided. |
Input Schema (JSON Schema)
{
"properties": {
"from_date": {
"description": "Start date in YYYY-MM-DD format (optional). If only from_date is provided, it will be treated as a single day.",
"type": "string"
},
"to_date": {
"description": "End date in YYYY-MM-DD format (optional). Must be at least 1 day after from_date when both are provided.",
"type": "string"
}
},
"type": "object"
}