get_user_holidays
Retrieve user holidays for a specific year, including utilization calculations and remaining vacation days, via the MoCo MCP Server integration.
Instructions
Get all user holidays for a specific year with utilization calculations and remaining vacation days
Input Schema
Name | Required | Description | Default |
---|---|---|---|
year | Yes | Year to retrieve holidays for (e.g., 2024) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"year": {
"description": "Year to retrieve holidays for (e.g., 2024)",
"type": "integer"
}
},
"required": [
"year"
],
"type": "object"
}