Provides the current local time and timezone information from the user's machine
Provides current UTC time obtained from an NTP time server
Simple Timeserver solves a key limitation in Claude by providing access to current time information. Claude doesn't natively have access to timestamps or the current time, which can limit its ability to provide time-sensitive responses or track time between interactions. This MCP server offers two essential time-related tools: one that provides the local time and timezone from the user's machine, and another that retrieves UTC time from an NTP time server. This enables Claude to know what time it is at the user's location and calculate time differences between interactions.
Simple Timeserver is a lightweight MCP server that gives Claude the ability to check the current time. This addresses a limitation in Claude's design where it doesn't have access to timestamps or current time information.
The easiest way to install Simple Timeserver is through Smithery:
npx -y @smithery/cli install mcp-simple-timeserver --client claude
This automatically configures the server for use with Claude Desktop.
pip install mcp-simple-timeserver
For macOS: Add the following to your Claude configuration:
"mcpServers": {
"simple-timeserver": {
"command": "python",
"args": ["-m", "mcp_simple_timeserver"]
}
}
For Windows: You'll need to specify the full path to your Python executable:
where python
in Command Prompt"mcpServers": {
"simple-timeserver": {
"command": "C:\\Users\\YOUR_USERNAME\\AppData\\Local\\Programs\\Python\\Python311\\python.exe",
"args": ["-m", "mcp_simple_timeserver"]
}
}
Once installed, Claude will have access to the time tools. You can ask Claude questions like:
Claude will use the appropriate tool to retrieve the time information and incorporate it into its responses.