Time MCP Server

Productivitystdiov2026.1.26
Repositorio

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.

Conectar

Añade esta configuración a .claude/mcp.json

{
  "mcpServers": {
    "time": {
      "command": "uvx",
      "args": [
        "mcp-server-time",
        "--local-timezone",
        "UTC"
      ]
    }
  }
}

Herramientas (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"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Anthropic (@modelcontextprotocol)
Repositorio
https://github.com/modelcontextprotocol/servers
Licencia
Apache-2.0
Versión
2026.1.26
Estrellas
86,206
Última actualización
27 de enero de 2026