days_in_month
Calculate the number of days in a specific or current month. Provide a date in YYYY-MM-DD format to determine the days in that month. Part of the time-mcp server, enhancing applications with accurate time-related functionalities.
Instructions
Get the number of days in a month. If no date is provided, get the number of days in the current month.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | The date to get the days in month. Format: YYYY-MM-DD |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "The date to get the days in month. Format: YYYY-MM-DD",
"type": "string"
}
},
"type": "object"
}