World Time

Published via Invokera

Current wall-clock time for any IANA time zone — lets agents reason about local times, offsets and DST without guessing. Current time in any IANA time zone via the public timeapi.io API. Curated by Invokera.

Connect from an agent

MCP endpoint (Claude Desktop, Cursor, any MCP client): https://invokera.com/r/world-time

REST endpoint (any HTTP caller): https://invokera.com/v1/world-time/tools

Calls require an endpoint token issued by the project owner.

Claude Code (one command)

claude mcp add --transport http world-time https://invokera.com/r/world-time --header "Authorization: Bearer inv_YOUR_TOKEN"

Success check: ask a question in the chat — if you can see your tool names, you're connected.

Claude Desktop configuration

{
  "mcpServers": {
    "world-time": {
      "type": "http",
      "url": "https://invokera.com/r/world-time",
      "headers": { "Authorization": "Bearer inv_YOUR_TOKEN" }
    }
  }
}

Success check: ask a question in the chat — if you can see your tool names, you're connected.

curl example

curl -X POST https://invokera.com/v1/world-time/tools/get_current_time \
  -H "Authorization: Bearer inv_YOUR_TOKEN" \
  -H "Content-Type: application/json" -d '{}'

Available tools

get_current_time

Get the current time in a time zone. Returns the current date, time, day of week and DST status for the given IANA time zone. Returns: Current time details for the requested zone..

list_time_zones

List all available IANA time zones. Returns the full list of IANA time zone names accepted by get_current_time. Returns: Array of IANA time zone names..