mcp-simple-timeserver
by andybrandt·★ 30·Score 44
A Python MCP server providing time queries, holiday information, and time calculations for Claude.
Overview
The mcp-simple-timeserver is a well-designed MCP server that addresses Claude's lack of timestamp functionality. It provides multiple tools for time-related operations, including getting local time, UTC time from NTP servers, calculating time distances between dates, and checking holidays worldwide. The server supports multiple locations, timezones, and calendar systems including Japanese, Hebrew, Hijri, and Persian calendars. The documentation is comprehensive with clear examples and configuration instructions for both manual and Smithery installations.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server when your application needs accurate time data, date calculations, and holiday information across multiple countries and calendar systems.
When NOT to choose this
Avoid if you need highly customizable time formatting beyond what's provided, or if you need historical time data before 1970 (Unix epoch limitation).
Tools this server exposes
6 tools extracted from the READMEget_local_timeReturns the current local time, day of week, and timezone from the user's machine
get_utcReturns accurate UTC time from an NTP time server
get_current_timeReturns current time with optional location, timezone, and calendar conversions
calculate_time_distanceCalculates duration between two dates/times (countdowns, elapsed time)
get_holidaysReturns public holidays (and optionally school holidays) for a country
is_holidayChecks if a specific date is a holiday in a given country or city
Comparable tools
Installation
Installation
Via Smithery
npx -y @smithery/cli install mcp-simple-timeserver --client claudeManual Installation
pip install mcp-simple-timeserverClaude Desktop Configuration
Mac OS:
"mcpServers": {
"simple-timeserver": {
"command": "python",
"args": ["-m", "mcp_simple_timeserver"]
}
}Windows:
"mcpServers": {
"simple-timeserver": {
"command": "C:\\Users\\YOUR_USERNAME\\AppData\\Local\\Programs\\Python\\Python311\\python.exe",
"args": ["-m", "mcp_simple_timeserver"]
}
}FAQ
- Does this work with other AI assistants besides Claude?
- Yes, this is a standard MCP server that should work with any MCP-compatible client.
- How accurate is the time information provided?
- All tools except get_local_time use accurate time from NTP servers. If NTP is unavailable, they fall back to local server time with a notice.
Compare mcp-simple-timeserver with
Last updated · Auto-generated from public README + GitHub signals.