Supports downloading the MCP-time binary releases directly from GitHub using curl commands for easy installation.
Allows running the MCP-time server in a containerized environment using the theo01/mcp-time Docker image, providing isolation and easy deployment.
Enables access to the MCP-time server releases, workflow status, and source code repository for installation and contribution.
Time MCP Server
A Model Context Protocol server that enables AI assistants to interact with time
Overview
The Time MCP Server is a Model Context Protocol (MCP) server that provides AI assistants and other MCP clients with standardized tools to perform time and date-related operations. This server acts as a bridge between AI tools and a robust time-handling backend, allowing for complex time manipulations through natural language interactions.
Features
⏰ Time Manipulation - Get current time, convert between timezones, and add or subtract durations
🗣️ Natural Language Parsing - Understands relative time expressions like "yesterday" or "next month"
⚖️ Time Comparison - Compare two different times with ease
🎨 Flexible Formatting - Supports a wide variety of predefined and custom time formats
✅ MCP Compliance - Fully compatible with the Model Context Protocol standard
🔄 Multiple Transports - Supports
stdio
for local integrations andHTTP stream
for network access
Installation
This MCP server can be integrated with various AI assistant clients that support the Model Context Protocol, including Cursor, Claude Desktop, Claude Code, and many more.
🚀 One-Click Install (Cursor)
Click the button below to automatically configure the MCP server using Docker in your Cursor environment:
Using npx (JavaScript/Node.js)
This method runs the MCP server using npx
, which requires Node.js to be installed. Copy the following JSON configuration into your MCP client settings:
Using Docker
Run the MCP server in an isolated container. Requires Docker to be installed. Copy this JSON configuration into your MCP client settings:
Using binary
Install the mcp-time
binary directly on your system. Choose one of the installation methods below, ensuring the binary is placed in a directory that's in your PATH
. Then add this JSON configuration to your MCP client settings:
Option 1: Download from Releases
Download the latest pre-built binary from the releases page:
Option 2: Install with Go
For Go developers, install directly using go install
:
The binary will be installed in your $GOPATH/bin
directory.
Option 3: Build from Source
Clone and build the project using make
:
The binary will be installed in ~/.local/bin/mcp-time
.
Usage
Basic Usage
Start with stdio transport (default, for MCP clients):
Start with HTTP stream transport (for network access):
Command-Line Options
The server supports the following flags for advanced configurations:
Available Tools
current_time
Get the current time in any timezone and format.
Parameters:
format
(optional) - The output format (predefined likeRFC3339
,Kitchen
, or custom Go layout)timezone
(optional) - Target timezone in IANA format (e.g.,America/New_York
). Defaults to UTC
Example: "What time is it in Tokyo?"
relative_time
Get a time based on a relative natural language expression.
Parameters:
text
(required) - Natural language expression (e.g.,yesterday
,5 minutes ago
,next month
)time
(optional) - Reference time for the expression. Defaults to current timetimezone
(optional) - Target timezone for the outputformat
(optional) - Output format for the time
Example: "What was the date 3 weeks ago?"
convert_timezone
Convert a given time between timezones.
Parameters:
time
(required) - Input time string (supports various formats)input_timezone
(optional) - Timezone of the input timeoutput_timezone
(optional) - Target timezone for the outputformat
(optional) - Output format for the time
Example: "Convert 2:30 PM EST to Tokyo time"
add_time
Add or subtract a duration from a given time.
Parameters:
time
(required) - Input time stringduration
(required) - Duration to add/subtract (e.g.,2h30m
,-1h
,24h
)timezone
(optional) - Target timezone for the outputformat
(optional) - Output format for the time
Example: "What time will it be in 45 minutes?"
compare_time
Compare two times and determine their relationship. Supports timezone-aware comparisons.
Parameters:
time_a
(required) - First time to comparetime_a_timezone
(optional) - Timezone fortime_a
in IANA format (e.g.,America/New_York
)time_b
(required) - Second time to comparetime_b_timezone
(optional) - Timezone fortime_b
in IANA format (e.g.,Europe/London
)
Returns:
-1
iftime_a
is beforetime_b
0
iftime_a
equalstime_b
1
iftime_a
is aftertime_b
Example: "Is 3 PM EST before 8 PM GMT?"
Contributing
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Credits
Built with these excellent libraries:
araddon/dateparse - Parse dates without knowing the format
tj/go-naturaldate - Natural language date parsing
mark3labs/mcp-go - Model Context Protocol SDK for Go
This server cannot be installed
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
The Time MCP Server is a Model Context Protocol (MCP) server that provides AI assistants and other MCP clients with standardized tools to perform time and date-related operations. This server acts as a bridge between AI tools and a robust time-handling back
Related MCP Servers
- -securityFlicense-qualityAn MCP server providing timezone conversions and time-related operations via RESTful API endpoints, featuring comprehensive error handling and timezone database integration.Last updated -
- AsecurityAlicenseAqualityA TypeScript server implementing the Model Context Protocol (MCP) that provides datetime and timezone information to AI agents and chat interfaces, allowing them to access current time in various timezones.Last updated -43,1613Mozilla Public License 2.0
- AsecurityAlicenseAqualityA lightweight mcp server that tells you exactly what time is it based on your IP.Last updated -18MIT License
- -securityAlicense-qualityAn MCP server that provides interval timing functionality using token-based time tracking, allowing users to start timers with unique identifiers and check elapsed time in milliseconds or human-readable format.Last updated -Apache 2.0