Connections & Capabilities
Connects To
Capabilities
Quickstart
Install
npx -y @smithery/cli install mcp-simple-timeserver --client claudeExposed MCP Tools (6)
get_local_timeReturns the current local time, day of week, and timezone from the user's machine.
Read-only access to local time information.
get_utcReturns accurate UTC time from an NTP time server.
Read-only access to NTP time server.
get_current_timeReturns current time with optional location, timezone, and calendar conversions.
Read-only access to time and calendar information, location data is optional.
calculate_time_distanceCalculates duration between two dates/times (countdowns, elapsed time).
Performs calculations based on provided dates, no external access.
get_holidaysReturns public holidays (and optionally school holidays) for a country.
Read-only access to holiday information from external APIs.
is_holidayChecks if a specific date is a holiday in a given country or city.
Read-only access to holiday information from external APIs.
Safety Assessment
The server is generally safe for use, especially when used in its default configuration. The web server variant introduces network exposure and should be deployed with standard security practices. The risk of information disclosure via location data is minimal but should be considered.
- Primarily read-only operations.
- No direct file system access.
- Relies on established NTP servers for time synchronization.
- Limited network exposure (if not using web server variant).
- No user authentication required.
- Potential for information disclosure (location data via `get_current_time`).
- Dependency on external APIs (Nager.Date, OpenHolidaysAPI) increases attack surface.
- If the web server variant is used, it introduces network exposure.
- Fallback to local server time if NTP is unavailable could lead to inaccuracies.
