eventTimeline
Generate an agenda view for a specific day using the Routine MCP server. Input a date to organize and manage events, tasks, and calendar details effectively.
Instructions
Agenda view for a day.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"items": [
{
"type": "integer"
},
{
"type": "integer"
},
{
"type": "integer"
}
],
"maxItems": 3,
"minItems": 3,
"type": "array"
}
},
"required": [
"date"
],
"type": "object"
}