current_zone_info

Pack: timeapi-io · Endpoint: https://gateway.pipeworx.io/timeapi-io/mcp

Return timezone metadata for an IANA zone name: UTC offset, DST offset, current offset, DST start/end, and whether DST is currently active.

Parameters

NameTypeRequiredDescription
timeZonestringyes

Example call

Arguments

{
  "timeZone": "America/Los_Angeles"
}

curl

curl -X POST https://gateway.pipeworx.io/timeapi-io/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"current_zone_info","arguments":{"timeZone":"America/Los_Angeles"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('current_zone_info', {
  "timeZone": "America/Los_Angeles"
});

More examples

{
  "timeZone": "Europe/Paris"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Timezone information"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "timeapi-io": {
      "url": "https://gateway.pipeworx.io/timeapi-io/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026