Time MCP Server
ECOSYSTEM REFERENCENO AUTHMITOriginally built by @Anthropic
Give your AI assistant awareness of the current time and timezone conversions. Query the current time in any timezone and convert between timezones using IANA names.
Setup Guide
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}
Tools
get_current_time
Get the current time in a specific IANA timezone (e.g., 'America/New_York', 'Europe/London').
convert_time
Convert a time from one timezone to another using IANA timezone names and 24-hour format.
Compatibility
About
The Time MCP Server is part of the official MCP server collection maintained by Anthropic. It solves a fundamental limitation: LLMs don't know what time it is. This server gives your AI assistant real-time clock access with full IANA timezone support.
Why LLMs need a time server
LLMs have a training knowledge cutoff and no access to a real-time clock. When asked "What time is it?", they can only guess. The Time server gives accurate, live time data — critical for:
- Scheduling and calendar-related tasks
- Timezone arithmetic ("When it's 9 AM in Tokyo, what time is it in NYC?")
- Time-stamped logging and documentation
- Automations that depend on the current time
Example interactions
Get current time:
json{ "name": "get_current_time", "arguments": { "timezone": "Asia/Kolkata" } }
Returns: "2026-04-03T01:42:00+05:30"
Convert between timezones:
json{ "name": "convert_time", "arguments": { "source_timezone": "America/New_York", "time": "16:30", "target_timezone": "Asia/Tokyo" } }
Returns the equivalent time in Tokyo with DST information.
Python requirement
This server is Python-based. Use uvx (recommended) or pip install mcp-server-time.
Override system timezone
By default, the server detects your system timezone automatically. To override:
json{ "command": "uvx", "args": ["mcp-server-time", "--local-timezone=America/New_York"] }
Docker installation
json{ "mcpServers": { "time": { "command": "docker", "args": ["run", "-i", "--rm", "-e", "LOCAL_TIMEZONE", "mcp/time"] } } }
Common issues
Wrong timezone detected
If the server reports the wrong system timezone (common in Docker or remote development), pass --local-timezone explicitly.
"IANA timezone not found"
Use the full IANA name like America/New_York, not abbreviations like EST or PST. A full list is available at timeanddate.com/time/zones.
This server can be set up manually using the configs above. Browse AgenticMarket for servers you can install in one command with zero config.
BROWSE INSTALLABLE SERVERS →Fetch MCP Server
Give your AI assistant the ability to read any web page. The official Fetch server converts HTML to markdown so your LLM can process web content, read documentation, and scrape data in real time.
Filesystem MCP Server
Give your AI assistant read and write access to local files and directories. The most-used MCP server — lets Claude, Cursor, and other AI tools work with your filesystem directly.
Everything MCP Server
The official MCP reference server that exercises every protocol feature — prompts, tools, resources, sampling, and all transports. Built for MCP client developers and testing.
Git MCP Server
Let your AI assistant interact with Git repositories directly. Status, diff, commit, branch, and log — all accessible to your LLM through 12 Git tools.
AgenticMarket