Toolkit MCP Server
by cyanheads
Verified
getCurrentTime
Get current time formatted with Intl.DateTimeFormat
Input Schema
Name | Required | Description | Default |
---|---|---|---|
locale | No | Locale for formatting (e.g., en-US) | en-US |
timeZone | No | Time zone (e.g., America/New_York) | UTC |
Input Schema (JSON Schema)
{
"properties": {
"locale": {
"default": "en-US",
"description": "Locale for formatting (e.g., en-US)",
"type": "string"
},
"timeZone": {
"default": "UTC",
"description": "Time zone (e.g., America/New_York)",
"type": "string"
}
},
"type": "object"
}