Toolkit MCP Server
by cyanheads
Verified
convertTimezone
Convert date/time between timezones using Luxon
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | Date/time string to convert (ISO 8601 format) | |
format | No | Output format (full, date, time, iso) | full |
fromTZ | Yes | Source timezone (IANA timezone identifier) | |
toTZ | Yes | Target timezone (IANA timezone identifier) |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Date/time string to convert (ISO 8601 format)",
"type": "string"
},
"format": {
"default": "full",
"description": "Output format (full, date, time, iso)",
"enum": [
"full",
"date",
"time",
"iso"
],
"type": "string"
},
"fromTZ": {
"description": "Source timezone (IANA timezone identifier)",
"type": "string"
},
"toTZ": {
"description": "Target timezone (IANA timezone identifier)",
"type": "string"
}
},
"required": [
"date",
"fromTZ",
"toTZ"
],
"type": "object"
}