{
  "name": "time.now",
  "group": "time",
  "summary": "Current date and time in any IANA timezone.",
  "description": "Returns the authoritative current time in one or more timezones, with UTC offset, ISO week number, day of year, weekend flag, and daylight-saving state. Use this instead of guessing the date: a language model has no clock, and its training cutoff is not today.",
  "keywords": [
    "current time",
    "what time is it",
    "today's date",
    "utc now",
    "timezone",
    "unix timestamp"
  ],
  "endpoint": "https://fluentedi.com/v1/time/now",
  "mcp_name": "time_now",
  "makes_network_request": false,
  "parameters": {
    "type": "object",
    "properties": {
      "timezone": {
        "description": "IANA timezone identifier, e.g. \"UTC\", \"America/New_York\", \"Asia/Kolkata\", \"Europe/London\".",
        "type": "string",
        "default": "UTC",
        "examples": [
          "America/New_York"
        ]
      },
      "also": {
        "description": "Additional timezones to report alongside the primary one.",
        "type": "array",
        "default": [],
        "items": {
          "type": "string"
        },
        "examples": [
          [
            "Asia/Tokyo",
            "Europe/Berlin"
          ]
        ]
      }
    },
    "required": [],
    "additionalProperties": false
  },
  "examples": [
    {
      "description": "Current time in UTC",
      "url": "https://fluentedi.com/v1/time/now",
      "args": {}
    },
    {
      "description": "Current time in Tokyo",
      "url": "https://fluentedi.com/v1/time/now?timezone=Asia%2FTokyo",
      "args": {
        "timezone": "Asia/Tokyo"
      }
    },
    {
      "description": "One instant across a distributed team",
      "url": "https://fluentedi.com/v1/time/now?timezone=America%2FLos_Angeles&also=%5B%22Europe%2FLondon%22%2C%22Asia%2FKolkata%22%5D",
      "args": {
        "timezone": "America/Los_Angeles",
        "also": [
          "Europe/London",
          "Asia/Kolkata"
        ]
      }
    }
  ],
  "suggestion": null
}