# Time Awareness Server

Provide LLMs with time awareness capabilities by exposing tools to get current time, relative time, timestamps, days in a month, time zone conversions, and week information. Enhance your AI applicati…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add Jeetanshu18/time-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list Jeetanshu18/time-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get Jeetanshu18/time-mcp current_time

# Call a tool
npx -y @smithery/cli@latest tool call Jeetanshu18/time-mcp current_time '{}'
```

## Tools (6)

- `current_time` — Get the current date and time.
- `relative_time` — Get the relative time from now.
- `days_in_month` — Get the number of days in a month. If no date is provided, get the number of days in the current month.
- `get_timestamp` — Get the timestamp for the time.
- `convert_time` — Convert time between timezones.
- `get_week_year` — Get the week and isoWeek of the year.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get Jeetanshu18/time-mcp <tool-name>
```

---

Source: https://github.com/Jeetanshu18/time-mcp | License: MIT
