Time MCP Server
ECOSYSTEM REFERENCENO AUTHApache-2.0Open SourceSource: @agenticmarket· community reference
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-mcp-server": {
"command": "uvx",
"args": [
"mcp-server-time"
]
}
}
}Tools
get_current_time
Retrieves the current time for a specified IANA timezone (e.g., 'America/New_York', 'Europe/London').
convert_time
Converts a given time from one IANA timezone to another using 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.
Install and Troubleshooting Intent Coverage
Developer-install and troubleshooting intent for community MCP server listings.
install mcp server / mcp server setup guide
mcp json config example / vscode mcp setup
mcp server not working / mcp tools not showing
mcp server compatibility matrix / cursor vs vscode mcp compatibility
mcp server monetization options / convert community mcp server to paid listing
Related Setup, Debug, and Learning Links
CLI installation guide
Install baseline for all IDEs before listing-specific setup.
Using servers guide
Covers runtime usage patterns and auth flow.
Cursor setup walkthrough
High-intent setup path for developer troubleshooting journeys.
Troubleshooting: server not working
Common failure modes for install and runtime issues.
Troubleshooting: tools not showing
Covers discovery/listing failures across major IDEs.
Related explore entry: FreshContext
Keeps same-intent users on matched category and tool shape.
Related explore entry: Memory
Keeps same-intent users on matched category and tool shape.
Related explore entry: Roundtable MCP
Keeps same-intent users on matched category and tool shape.
Related explore entry: Sequential Thinking
Keeps same-intent users on matched category and tool shape.
Install this server instantly with the AgenticMarket CLI — zero config, auto-detects your IDE.
$npx agenticmarket install time-mcp-serverFreshContext
Freshness-aware MCP server with 21 tools for timestamped, decay-ranked retrieval signals across GitHub, HN, jobs, research, market data, and more.
Memory
Give your AI assistant persistent memory across conversations. The Memory server stores entities, relations, and observations in a local knowledge graph that persists between sessions.
Roundtable MCP
Multi-model AI council MCP server that enables collaborative reasoning for architecture, debugging, code review, and engineering decisions.
Sequential Thinking
Enhance your AI assistant's reasoning with structured, step-by-step thinking. Supports revisions, branching, and dynamic adjustment of reasoning depth.
AgenticMarket