getTodayDate
Retrieve today's date in YYYY-MM-DD format for the local timezone to avoid hardcoding dates in workflows.
Instructions
Get today's date in local timezone (YYYY-MM-DD format). Use this tool whenever you need today's date - NEVER hardcode dates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
random_string | No | Dummy parameter for no-parameter tools |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"random_string": {
"description": "Dummy parameter for no-parameter tools",
"type": "string"
}
},
"type": "object"
}