Date MCP Server

Provide date and time utilities: it can return today's date, the current datetime (local or UTC), the datetime in a specified timezone, and the current Unix timestamp.

Utilities DateTimeFormatting

Configuration

MCP Settings Configuration

{
    "date": {
        "stdio": {
            "command": "python3",
            "args": [
                "-m", "mcpuniverse.mcp.servers.date"
            ]
        },
        "sse": {
            "command": "python3",
            "args": [
                "-m", "mcpuniverse.mcp.servers.date",
                "--transport", "sse",
                "--port", "{{PORT}}"
            ]
        }
    }
}

Available Tools & Methods

get_today_date()
Get today's date in YYYY-MM-DD format.
Parameters: None
get_current_datetime()
Get the current date and time in ISO format.
Parameters: None
get_current_datetime_utc()
Get the current date and time in UTC timezone.
Parameters: None
get_date_in_timezone(timezone_name)
Get the current date and time in a specific timezone.
Parameters: timezone_name: Timezone name (e.g., 'America/New_York', 'Europe/London', 'Asia/Tokyo')
get_timestamp()
Get the current Unix timestamp.
Parameters: None