convert_timezone
Convert input time from one IANA timezone to another with a specified output format using the MCP Time Server Node.
Instructions
Convert time between timezones
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | |
from_timezone | Yes | Source IANA timezone | |
time | Yes | Input time | |
to_timezone | Yes | Target IANA timezone |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Output format",
"type": "string"
},
"from_timezone": {
"description": "Source IANA timezone",
"type": "string"
},
"time": {
"description": "Input time",
"type": "string"
},
"to_timezone": {
"description": "Target IANA timezone",
"type": "string"
}
},
"required": [
"time",
"from_timezone",
"to_timezone"
],
"type": "object"
}