harshpreet931/time-aware-agents
If you are the rightful owner of time-aware-agents and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Time-Aware MCP Server is a lightweight and efficient server designed to provide AI agents with real-time time information using the Model Context Protocol (MCP).
Time-Aware MCP Server 🕒
Make your AI agents time-aware with this simple and efficient Model Context Protocol (MCP) server! This server provides a fundamental building block for time-sensitive AI applications by offering a tool to get the current time.
Built with Python and FastMCP, it's lightweight, easy to integrate, and ready to be extended with more sophisticated time-related functionalities.
✨ Key Features
time_now
Tool: Instantly retrieve the current time in ISO 8601 format (e.g., "16:30:00").- MCP Native: Seamlessly integrates with MCP clients like Claude for Desktop, enabling AI agents to access real-time information.
- Lightweight & Fast: Minimal overhead, ensuring quick responses.
- Easily Extensible: A clean foundation to add more time-related tools (e.g., time zone conversions, date calculations, countdowns).
- Docker Ready: Includes a Dockerfile for easy containerization and deployment (see Docker usage section below).
- Python Powered: Leverages the robustness and flexibility of Python using FastMCP.
Prerequisites
- Python 3.10 or higher
pip
oruv
for package management
Usage with docker
{
"mcpServers": {
"time_server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"harshpreet931/time_server"
]
}
}
}
Setup and Installation
-
Clone the repository (or download the files):
# If this were a git repo already: # git clone <repository-url> # cd time-aware-mcp-server
-
Create a virtual environment (recommended): Using
venv
:python -m venv .venv source .venv/bin/activate # On Windows: .\.venv\Scripts\activate
Or using
uv
:uv venv source .venv/bin/activate # On Windows: .\.venv\Scripts\activate
-
Install dependencies: Using
pip
:pip install "mcp[cli]"
Or using
uv
:uv add "mcp[cli]"
(You can also create a
requirements.txt
file withmcp[cli]
and runpip install -r requirements.txt
oruv pip install -r requirements.txt
) -
Run the server:
python time_server.py
Or using
uv
:uv run time_server.py
Configure MCP Client (Example: Claude for Desktop)
To use this server with an MCP client like Claude for Desktop, you need to add its configuration to the client's settings file.
-
Locate your Claude for Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
(e.g.,C:\Users\<YourUser>\AppData\Roaming\Claude\claude_desktop_config.json
) - Linux:
~/.config/Claude/claude_desktop_config.json
- macOS:
-
Add the server configuration to the
mcpServers
object. Replace/absolute/path/to/
with the actual absolute path to yourtime_server.py
file.{ "mcpServers": { "time_server": { "command": "python", "args": [ "/absolute/path/to/time_server.py" ] } // Add other servers here if you have them } }
Important: Ensure the path to
time_server.py
is correct. If you are running the server from within a virtual environment, thepython
command should ideally point to the Python interpreter in that virtual environment, or you should ensure themcp
library is globally accessible if not using a venv path in the command. For simplicity, the example usespython
, assuming it's in your PATH and can find themcp
library.
Usage
Once the server is running and the MCP client is configured, you can ask the AI agent to use the time_now
tool.
Example Interaction:
User to AI Agent: "What time is it now?" or "Can you get the current time using the time_now tool?"
AI Agent (after using the time_now
tool):
The tool will return the current time, for example: "16:30:00" (depending on the actual current time).
Error Handling:
The time_now
tool does not take any input parameters, so specific input validation errors are not applicable to the tool itself. General server or MCP communication errors would be handled by the MCP framework or the client.
Contributing
Contributions are welcome! If you'd like to add more time-related tools or improve existing functionality, please feel free to fork the repository, make your changes, and submit a pull request.
When contributing, please ensure:
- Code is well-documented.
- New tools are tested.
- You follow the existing coding style.
License
This project is licensed under the MIT License. See the LICENSE
file for details.