answer_time_question
Resolve natural-language time, timezone, and scheduling questions by classifying intent and dispatching to the appropriate time API. Handles vague prompts and date qualifiers like 'next Friday' or 'tomorrow'.
Instructions
PREFERRED entry point for time/timezone/scheduling questions. findtime.io classifies intent and dispatches internally. Use this WHENEVER the user's input includes a natural-language day or date qualifier, such as "Tuesday", "next Friday", "tomorrow", "tonight", "this weekend", "in 3 weeks", or "last Monday". The specific tools (convert_time, get_current_time, find_meeting_time, etc.) will silently drop these qualifiers if you dispatch to them without an explicit ISO date. Also the right choice for vague or mixed-intent prompts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| now | No | Optional ISO timestamp for deterministic relative-date handling. | |
| date | No | Optional YYYY-MM-DD date context. | |
| query | Yes | The raw user time-related question or prompt. | |
| locale | No | Optional user locale hint, such as en-US. | |
| _endUserId | No | Optional opaque per-call end-user attribution token populated by the MCP host, not the LLM. Use a non-PII hash or token; never send raw email, name, or platform user ID. | |
| userTimezone | No | Optional IANA timezone for the user, used for relative questions like "my time" or "tomorrow". |