# Timestamp

Translates between Unix, ISO 8601, and human-readable formats while automatically detecting input types. Parses complex cron expressions into plain English and calculates precise differences between …

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add openclaw-ai/timestamp-converter

# Browse available tools
npx -y smithery tool list openclaw-ai/timestamp-converter

# Get full schema for a tool
npx -y smithery tool get openclaw-ai/timestamp-converter convert_timestamp

# Call a tool
npx -y smithery tool call openclaw-ai/timestamp-converter convert_timestamp '{}'
```

## Direct MCP Connection

Endpoint: `https://timestamp-converter--openclaw-ai.run.tools`

## Tools (5)

- `convert_timestamp` — Convert a timestamp between formats: unix epoch (seconds/ms) ↔ ISO 8601 ↔ human-readable ↔ relative ("3 hours ago"). Au…
- `timezone_convert` — Convert a datetime from one timezone to another. When show_all=true, displays the time in 7 common timezones simultaneo…
- `parse_cron` — Parse a standard 5-field cron expression (minute hour day month weekday). Returns: human-readable description, validati…
- `time_diff` — Calculate the difference between two datetimes. Returns difference in seconds, minutes, hours, days, weeks, and approxi…
- `format_duration` — Convert between duration formats: seconds (integer) ↔ human string ("2h 30m 15s") ↔ ISO 8601 duration ("PT2H30M15S"). A…

```bash
# Get full input/output schema for a tool
npx -y smithery tool get openclaw-ai/timestamp-converter <tool-name>
```
