Time MCP Server
Productivitystdiov2026.1.26
Reference MCP server providing time and timezone conversion capabilities. Enables AI agents to get the current time in any timezone, convert between timezones, calculate time differences, and format dates. Useful for scheduling, international coordination, and any task requiring accurate time awareness.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"time": {
"command": "uvx",
"args": [
"mcp-server-time",
"--local-timezone",
"UTC"
]
}
}
}Tools (2)
get_current_time
Get the current time in a specified timezone.
{
"type": "object",
"required": [
"timezone"
],
"properties": {
"timezone": {
"type": "string",
"description": "IANA timezone name (e.g. America/New_York, Europe/London, Asia/Tokyo)"
}
}
}convert_time
Convert a time from one timezone to another.
{
"type": "object",
"required": [
"time",
"from_timezone",
"to_timezone"
],
"properties": {
"time": {
"type": "string",
"description": "Time to convert (ISO 8601 format)"
},
"to_timezone": {
"type": "string",
"description": "Target timezone"
},
"from_timezone": {
"type": "string",
"description": "Source timezone"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- License
- Apache-2.0
- Version
- 2026.1.26
- Stars
- 86,206
- Last Updated
- January 27, 2026