The MCP-timeserver provides datetime information to systems and tools.
Access time in specific timezones: Using the
datetime://URI scheme (e.g.,datetime://Europe/London/now)Retrieve current local time: Using the
get_current_time()tool, which returns the time in the system's configured timezone
Allows accessing current date/time information through a datetime:// URI scheme with '/now' endpoint
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP-timeserverwhat time is it in Tokyo right now?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP-timeserver
A simple MCP server that exposes datetime information to agentic systems and chat REPLs
Components
Resources
The server implements a simple datetime:// URI scheme for accessing the current date/time in a given timezone, for example:
datetime://Africa/Freetown/now
datetime://Europe/London/now
datetime://America/New_York/nowTools
The server exposes a tool to get the current local time in the system timezone:
>>> get_current_time()
"The current time is 2024-12-18 19:59:36"Related MCP server: MCP Time Server
Quickstart
Install
use the following json
{
"mcpServers": {
"MCP-timeserver": {
"command": "uvx",
"args": ["MCP-timeserver"]
}
}
}