{
  "name": "time.convert",
  "group": "time",
  "summary": "Convert a timestamp between timezones.",
  "description": "Converts one instant into any number of timezones, handling daylight saving transitions correctly. Naive inputs (no Z or offset) are read as wall-clock time in `from`; inputs carrying an offset are absolute.",
  "keywords": [
    "timezone conversion",
    "convert time",
    "utc to local",
    "meeting across timezones",
    "dst"
  ],
  "endpoint": "https://fluentedi.com/v1/time/convert",
  "mcp_name": "time_convert",
  "makes_network_request": false,
  "parameters": {
    "type": "object",
    "properties": {
      "time": {
        "description": "The instant to convert: ISO 8601, a naive wall-clock time, a unix timestamp, or \"now\".",
        "type": "string",
        "default": "now",
        "examples": [
          "2026-08-22T14:30:00"
        ]
      },
      "from": {
        "description": "Timezone the input is expressed in (used only when it carries no offset).",
        "type": "string",
        "default": "UTC",
        "examples": [
          "America/New_York"
        ]
      },
      "to": {
        "description": "Target timezones.",
        "type": "array",
        "default": [
          "UTC"
        ],
        "items": {
          "type": "string"
        },
        "examples": [
          [
            "Asia/Tokyo",
            "America/New_York"
          ]
        ]
      }
    },
    "required": [
      "to"
    ],
    "additionalProperties": false
  },
  "examples": [
    {
      "description": "A London meeting time, in New York and Tokyo",
      "url": "https://fluentedi.com/v1/time/convert?time=2026-08-22%2009%3A00&from=Europe%2FLondon&to=%5B%22America%2FNew_York%22%2C%22Asia%2FTokyo%22%5D",
      "args": {
        "time": "2026-08-22 09:00",
        "from": "Europe/London",
        "to": [
          "America/New_York",
          "Asia/Tokyo"
        ]
      }
    },
    {
      "description": "Unix timestamp to a human timezone",
      "url": "https://fluentedi.com/v1/time/convert?time=1755900000&to=%5B%22Asia%2FKolkata%22%5D",
      "args": {
        "time": "1755900000",
        "to": [
          "Asia/Kolkata"
        ]
      }
    }
  ],
  "suggestion": null
}