get_user_sick_days
Retrieve detailed sick day records for a user in a specific year, including daily breakdown and total calculations, using the MoCo MCP Server.
Instructions
Get all user sick days for a specific year with daily breakdown and total calculations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
year | Yes | Year to retrieve sick days for (e.g., 2024) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"year": {
"description": "Year to retrieve sick days for (e.g., 2024)",
"type": "integer"
}
},
"required": [
"year"
],
"type": "object"
}