# com.agishub/timezone-toolkit (remote · api.agishub.com)

Timezone tools for agents: convert, world clock, offset, lookup, date math, holidays, slots. x402

- Trust score: 65/100 (medium)
- Change this week: +15
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `api.agishub.com`: 65/100 (this document), [markdown](https://verifymcp.io/servers/com-agishub-timezone-toolkit/mcp-timezone.md), [page](https://verifymcp.io/servers/com-agishub-timezone-toolkit/mcp-timezone)

## Channel facts

- Endpoint: `https://api.agishub.com/mcp/timezone`
- Transports: `streamable-http`
- Auth: `none`
- Version: `2.1.1`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 49/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 9 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 83/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 855 tokens (~95/item across 9 items; 9 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-agishub-timezone-toolkit https://api.agishub.com/mcp/timezone
```

### Codex

```toml
[mcp_servers.com-agishub-timezone-toolkit]
url = "https://api.agishub.com/mcp/timezone"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-agishub-timezone-toolkit": {
      "type": "remote",
      "url": "https://api.agishub.com/mcp/timezone",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-agishub-timezone-toolkit --url https://api.agishub.com/mcp/timezone --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-agishub-timezone-toolkit:
    url: "https://api.agishub.com/mcp/timezone"
```

### Other

```json
{
  "mcpServers": {
    "com-agishub-timezone-toolkit": {
      "type": "http",
      "url": "https://api.agishub.com/mcp/timezone"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 65, +12)

- [functional improvement] Schema quality: unverified → excellent

### 2026-07-31 (score 53, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 52, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 52, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 51, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 50, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 49)

First indexed and scored.

## MCP tools (9)

### `now_in` (~72 tokens)

Get the current local time in an IANA timezone, including the UTC offset, zone abbreviation and whether DST is in effect. Use whenever you need to know what time it is 'now' somewhere.

Input parameters:

- `timezone` (string, required): IANA timezone, e.g. 'Europe/Madrid', 'Asia/Kolkata'.

### `convert_timezone` (~111 tokens)

Convert a specific date/time from one IANA timezone to another. Accepts ISO 8601 or natural language ('next Tuesday 3pm'). Returns the converted datetime with its UTC offset, zone abbreviation and DST flag.

Input parameters:

- `datetime` (string, required): ISO 8601 or natural language, e.g. "2026-07-09T15:30" or "next Tuesday 3pm".
- `from` (string, required): Source IANA timezone.
- `to` (string, required): Target IANA timezone.

### `convert_batch` (~80 tokens)

Convert a single instant into many IANA timezones at once — a world-clock view. Like convert_timezone, but 'to' is a list of target zones.

Input parameters:

- `datetime` (string, required): ISO 8601 or natural language.
- `from` (string, required): Source IANA timezone.
- `to` (array, required): List of target IANA timezones.

### `tz_offset` (~73 tokens)

Get the exact UTC offset of an IANA timezone at a given instant, DST-aware. Correctly handles fractional offsets such as India +05:30 and Nepal +05:45.

Input parameters:

- `instant` (string): ISO 8601 or natural language. Defaults to now.
- `timezone` (string, required): IANA timezone.

### `list_timezones` (~65 tokens)

List or search valid IANA timezone identifiers, optionally filtered by a city, region or country substring (e.g. 'kolkata', 'america'). Use it to discover the exact identifier to pass to the other tools.

Input parameters:

- `query` (string): Case-insensitive substring filter.

### `lookup_timezone` (~71 tokens)

Resolve a city or country name to its IANA timezone(s) so you don't need the exact identifier — e.g. 'Delhi' -> 'Asia/Kolkata'. Use it first when you only have a place name.

Input parameters:

- `city_or_country` (string, required): City or country name, or ISO country code.

### `date_math` (~131 tokens)

Timezone-aware date arithmetic: add or subtract a duration to a datetime (days are calendar-based and DST-safe; hours and minutes are absolute), or compute the difference between two datetimes that may be in different zones.

Input parameters:

- `datetime` (string, required): Base datetime: ISO 8601 or natural language.
- `operation` (object, required): What to compute: { type:'add', amount, unit } to add/subtract a duration, or { type:'diff', to_datetime, to_timezone? } for the difference between two datetimes.
- `timezone` (string, required): IANA timezone the base datetime is in.

### `find_meeting_slots` (~163 tokens)

Find working-hour time slots that overlap across participants in different timezones for a meeting of a given duration, excluding weekends and (when a country is given per participant) that person's public holidays. Free tier returns at most 1 slot; the paid endpoint returns every matching slot (see 'upgrade' in the response).

Input parameters:

- `date_range` (object, required): Inclusive date window to search, e.g. { "start":"2026-07-13", "end":"2026-07-17" }.
- `duration` (number, required): Meeting duration in minutes.
- `participants` (array, required): The people to meet. Each participant is { timezone (IANA, required), working_hours? { start, end }, country? (ISO alpha-2) }.

### `is_holiday` (~89 tokens)

Check whether a given date is a public holiday in a country (identified by its ISO 3166-1 alpha-2 code), and return the holiday name if so. Backed by an authoritative public-holiday dataset.

Input parameters:

- `country_code` (string, required): ISO country code, e.g. "US", "ES", "IN".
- `date` (string, required): Date "YYYY-MM-DD".

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-agishub-timezone-toolkit/mcp-timezone#diagnostics

## Score history

- 2026-08-03: 65
- 2026-08-02: 65
- 2026-08-01: 53
- 2026-07-31: 53
- 2026-07-30: 52
- 2026-07-29: 52
- 2026-07-28: 51
- 2026-07-27: 50
- 2026-07-26: 49

## Links

- Remote endpoint: https://api.agishub.com/mcp/timezone
- Repository: https://github.com/agishub/agishub-mcp
- Website: https://agishub.com/
- Changelog RSS feed: https://verifymcp.io/servers/com-agishub-timezone-toolkit/mcp-timezone/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-agishub-timezone-toolkit/mcp-timezone/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-agishub-timezone-toolkit/mcp-timezone
