---
title: "Time MCP Server for ToolPiper · ModelPiper"
description: "Time and timezone conversion utilities. LLMs are unreliable narrators about 'now'. Training cutoff is months or years stale, prompt timestamps are often missing or wrong, and DST math is a known weak spot. A small Python"
canonical: "https://modelpiper.com/mcp-tools/time"
---

# Time MCP Server for ToolPiper · ModelPiper

> Time and timezone conversion utilities. LLMs are unreliable narrators about 'now'. Training cutoff is months or years stale, prompt timestamps are often missing or wrong, and DST math is a known weak spot. A small Python

T

# Time MCP Server

✓ verified

Time and timezone conversion utilities.

Install Time in ToolPiper

Don't have ToolPiper? We'll take you to the download.

[Open repository →](https://github.com/modelcontextprotocol/servers/tree/main/src/time)

Publisher

[Anthropic](https://github.com/modelcontextprotocol/servers)

License

MIT

Transport

Local subprocess

Tools

2

## What this server does

LLMs are unreliable narrators about 'now'. Training cutoff is months or years stale, prompt timestamps are often missing or wrong, and DST math is a known weak spot. A small Python server that wraps \`zoneinfo\` is more accurate than asking the model to compute it. The surface is two tools: \`get\_current\_time(timezone)\` returns the current time in an IANA timezone along with an \`is\_dst\` flag; \`convert\_time(source\_timezone, time, target\_timezone)\` converts an \`HH:MM\` 24-hour time between two zones and returns both sides plus a \`time\_difference\` string like \`+13.0h\`. The server auto-detects your system timezone on launch. Pass \`--local-timezone=America/New\_York\` if you are running headless or want a fixed default. Timezones must be IANA names: \`Europe/London\`, \`Asia/Tokyo\`, \`America/Los\_Angeles\`. Three-letter codes (EST, PST) are not accepted because they are ambiguous: 'CST' is both US Central and China Standard Time, six hours apart. IANA names handle that plus historical DST changes correctly. Pair this with a calendar server for scheduling work, or with chat for the simple 'what time is it in Berlin?' question that the model would otherwise get wrong. Installs via \`uvx mcp-server-time\`, pip, or Docker.

## Tools included

-   get\_current\_time
    
    Return the current time in a given IANA timezone.
    
-   convert\_time
    
    Convert a time between two IANA timezones.
    

The authoritative list comes from the server's tools/list at runtime. This catalog entry may lag the upstream until the next ToolPiper release.

## Install in ToolPiper

ToolPiper handles the JSON configuration. Click Install, fill in any required tokens, and the server is ready in your chat.

Install Time in ToolPiper

Don't have ToolPiper? We'll take you to the download.

## Install in another client

Install in another MCP client (Claude Desktop, Cursor, Continue, Cline)

Claude Desktop Cursor Continue Cline

Add this to ~/Library/Application Support/Claude/claude\_desktop\_config.json.

```
{
  "mcpServers": {
    "time": {
      "command": "uvx",
      "args": [
        "mcp-server-time"
      ]
    }
  }
}
```

Copy

## Example prompts

-   "What time is it in Tokyo right now?"
    
    Copy
-   "When it's 4 PM in New York, what time is it in London?"
    
    Copy
-   "Convert 9:30 AM Tokyo time to New York time."
    
    Copy
-   "Is daylight saving in effect in Sydney today?"
    
    Copy

## Security notes

Local-only. No network calls, no env vars carrying credentials. The \`--local-timezone\` argument is the only knob, and the worst case for misconfiguration is an incorrect default zone, which is obvious the first time you ask for the current time. No reason to think about this server's posture beyond 'is it running.'

## Common questions

Why does the server reject EST, PST, and other three-letter codes?

Three-letter codes are ambiguous. 'CST' refers to both US Central (UTC-6) and China Standard Time (UTC+8). 'IST' is Indian, Israeli, and Irish. IANA names like \`America/Chicago\`, \`Asia/Shanghai\`, \`Asia/Kolkata\`, and \`Europe/Dublin\` are unambiguous and carry the full history of DST changes, which short codes do not.

## Related tools

-   [
    
    F
    
    ### Filesystem
    
    ✓ verified
    
    Read and write files in a directory you choose.
    
    SystemLocal subprocess4 tools
    
    
    
    
    
    ](/mcp-tools/filesystem)
-   [
    
    V
    
    ### VisionPiper
    
    ✓ verified
    
    Drive ToolPiper's screen-vision companion: steer the capture region, grab screenshots, record and export - all on-device.
    
    SystemRemote HTTP15 tools
    
    
    
    
    
    ](/mcp-tools/visionpiper)

[← Back to all MCP tools](/mcp-tools)
