Time MCP Server A Model Context Protocol server that enables AI assistants to interact with time 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 t
Add this skill
npx mdskills install TheoBrigitte/mcp-timeWell-documented MCP server with comprehensive time tools and multiple installation options

Time MCP Server
A Model Context Protocol server that enables AI assistants to interact with time
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.
stdio for local integrations and HTTP stream for network accessThis 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.
Click the button below to automatically configure the MCP server using Docker in your Cursor environment:
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:
{
"mcpServers": {
"mcp-time": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@theo.foobar/mcp-time"
]
}
}
}
Run the MCP server in an isolated container. Requires Docker to be installed. Copy this JSON configuration into your MCP client settings:
{
"mcpServers": {
"mcp-time": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"theo01/mcp-time:latest"
]
}
}
}
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:
{
"mcpServers": {
"mcp-time": {
"type": "stdio",
"command": "mcp-time"
}
}
}
Download the latest pre-built binary from the releases page:
# Replace OS-ARCH with your platform (e.g., linux-amd64, darwin-arm64, windows-amd64)
curl -Lo mcp-time https://github.com/TheoBrigitte/mcp-time/releases/latest/download/mcp-time.OS-ARCH
install -D -m 755 ./mcp-time ~/.local/bin/mcp-time
For Go developers, install directly using go install:
go install github.com/TheoBrigitte/mcp-time/cmd/mcp-time@latest
The binary will be installed in your $GOPATH/bin directory.
Clone and build the project using make:
git clone https://github.com/TheoBrigitte/mcp-time.git
cd mcp-time
make install
The binary will be installed in ~/.local/bin/mcp-time.
Start with stdio transport (default, for MCP clients):
mcp-time
Start with HTTP stream transport (for network access):
mcp-time --transport stream --address "http://localhost:8080/mcp"
The server supports the following flags for advanced configurations:
$ mcp-time --help
An MCP (Model Context Protocol) server which provides utilities to work with time and dates.
Usage:
mcp-time [flags]
Flags:
--address string Listen address for Stream HTTP Server (only for --transport stream) (default "http://localhost:8080/mcp")
-h, --help help for mcp-time
--log-file string Path to log file (logs is disabled if not specified)
-t, --transport string Transport layer: stdio, stream. (default "stdio")
--version Print version information and exit
current_timeGet the current time in any timezone and format.
Parameters:
format (optional) - The output format (predefined like RFC3339, Kitchen, or custom Go layout)timezone (optional) - Target timezone in IANA format (e.g., America/New_York). Defaults to UTCExample: "What time is it in Tokyo?"
relative_timeGet 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 timeExample: "What was the date 3 weeks ago?"
convert_timezoneConvert 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 timeExample: "Convert 2:30 PM EST to Tokyo time"
add_timeAdd 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 timeExample: "What time will it be in 45 minutes?"
compare_timeCompare two times and determine their relationship. Supports timezone-aware comparisons.
Parameters:
time_a (required) - First time to comparetime_a_timezone (optional) - Timezone for time_a in IANA format (e.g., America/New_York)time_b (required) - Second time to comparetime_b_timezone (optional) - Timezone for time_b in IANA format (e.g., Europe/London)Returns:
-1 if time_a is before time_b0 if time_a equals time_b1 if time_a is after time_bExample: "Is 3 PM EST before 8 PM GMT?"
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.
This project is licensed under the MIT License - see the LICENSE file for details.
Built with these excellent libraries:
Install via CLI
npx mdskills install TheoBrigitte/mcp-timeMCP Time is a free, open-source AI agent skill. Time MCP Server A Model Context Protocol server that enables AI assistants to interact with time 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 t
Install MCP Time with a single command:
npx mdskills install TheoBrigitte/mcp-timeThis downloads the skill files into your project and your AI agent picks them up automatically.
MCP Time works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.