{
  "name": "time.zones",
  "group": "time",
  "summary": "List or search IANA timezone identifiers with current offsets.",
  "description": "Every IANA timezone the runtime supports, with its current UTC offset and local time. Search by city, region or offset to resolve a vague location like \"Bangalore\" to a valid identifier before calling other time tools.",
  "keywords": [
    "timezone list",
    "iana",
    "tz database",
    "utc offset",
    "what timezone"
  ],
  "endpoint": "https://fluentedi.com/v1/time/zones",
  "mcp_name": "time_zones",
  "makes_network_request": false,
  "parameters": {
    "type": "object",
    "properties": {
      "search": {
        "description": "Case-insensitive substring filter, e.g. \"kolkata\", \"america/\", \"+05:30\".",
        "type": "string",
        "default": ""
      },
      "limit": {
        "description": "Maximum results to return.",
        "type": "integer",
        "default": 50,
        "minimum": 1,
        "maximum": 700
      }
    },
    "required": [],
    "additionalProperties": false
  },
  "examples": [
    {
      "description": "Find the identifier for Bangalore",
      "url": "https://fluentedi.com/v1/time/zones?search=kolkata",
      "args": {
        "search": "kolkata"
      }
    },
    {
      "description": "Every Australian zone",
      "url": "https://fluentedi.com/v1/time/zones?search=australia%2F",
      "args": {
        "search": "australia/"
      }
    }
  ],
  "suggestion": null
}