drio
Open app

Time

Source

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.

Catalog onlyCatalog onlySTDIO

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.
  1. Getting the current time in a specific timezone.
  2. Converting time between different timezones for scheduling and coordination.
  3. Automating time-related queries in applications and services.

Tools

convert_time

source_timezonetarget_timezonetime

Convert time between timezones

Last seen Apr 5, 2026

Convert time between timezones

get_current_time

timezone

Get current time in a specific timezones

Last seen Apr 5, 2026

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.