Time
A Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
Overview
Time MCP Server is a Model Context Protocol server that provides time and timezone conversion capabilities. It enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
To use Time MCP Server, you can install it via pip or use uvx for direct execution. After installation, configure it in your Claude or Zed settings. The server provides tools like get_current_time and convert_time to fetch current time in a specific timezone and convert time between timezones, respectively.
- Provides current time information in any IANA timezone. - Converts time between different timezones. - Automatic system timezone detection with the option to override. - Easy integration with Claude and Zed through configuration settings.
- Getting the current time in a specific timezone.
- Converting time between different timezones for scheduling and coordination.
- Automating time-related queries in applications and services.
Tools
convert_time
Convert time between timezones
Convert time between timezones
get_current_time
Get current time in a specific timezones
Get current time in a specific timezones
Add to your AI client
Use these steps to connect Time in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"time-modelcontextprotocol": {
"command": "uvx",
"args": [
"mcp-server-time",
"--local-timezone=America/New_York"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"time-modelcontextprotocol": {
"command": "uvx",
"args": [
"mcp-server-time",
"--local-timezone=America/New_York"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"time-modelcontextprotocol": {
"command": "uvx",
"args": [
"mcp-server-time",
"--local-timezone=America/New_York"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"time-modelcontextprotocol": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-server-time",
"--local-timezone=America/New_York"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"time-modelcontextprotocol": {
"command": "uvx",
"args": [
"mcp-server-time",
"--local-timezone=America/New_York"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"time-modelcontextprotocol": {
"command": "uvx",
"args": [
"mcp-server-time",
"--local-timezone=America/New_York"
]
}
}
}FAQ
Can Time MCP Server handle all IANA timezones?
Yes, Time MCP Server supports all IANA timezones for time and timezone conversion.
Is Time MCP Server free to use?
Yes, Time MCP Server is open-source and free to use under the MIT License.
How accurate is the time provided by Time MCP Server?
The time provided by Time MCP Server is highly accurate, relying on system time and IANA timezone data for precision.