A lightweight MCP server for date, time, and day of week
Project description
mcp-datetimeday
A lightweight MCP server for date, time, and day of week.
Installation
uv sync
Usage
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"datetimeday": {
"command": "uv",
"args": ["run", "--directory", "/Users/robsherman/Servers/mcp-datetimeday", "mcp-datetimeday"]
}
}
}
Available Tools
| Tool | Description |
|---|---|
get_datetime |
Get current date/time with day of week first. Supports tz arg for timezone, format arg: iso8601, unix, human, or full (default). |
relative_time |
Get relative time between dates (e.g., "3 days ago", "in 2 weeks") |
days_in_month |
Get number of days in a month with first/last day info |
convert_time |
Convert time between timezones |
get_week_year |
Get week number, ISO week, day of year, quarter |
Example Output
get_datetime()
{
"day_of_week": "Monday",
"date": "2026-02-02",
"time": "16:55:22",
"timezone": "PST",
"utc_offset": "-0800",
"iso8601": "2026-02-02T16:55:22-08:00",
"unix_timestamp": 1770080122,
"human_readable": "Monday, February 02, 2026 at 04:55 PM"
}
get_datetime(format="iso8601")
{
"day_of_week": "Monday",
"iso8601": "2026-02-02T16:55:22-08:00"
}
get_datetime(tz="UTC")
{
"day_of_week": "Tuesday",
"date": "2026-02-03",
"time": "00:55:22",
"timezone": "UTC",
"utc_offset": "+0000",
"iso8601": "2026-02-03T00:55:22+00:00",
"unix_timestamp": 1738544122,
"human_readable": "Tuesday, February 03, 2026 at 12:55 AM"
}
relative_time("2026-02-10")
{
"target": "2026-02-10",
"target_day_of_week": "Tuesday",
"reference": "now",
"relative": "in 1 week",
"days_difference": 7,
"total_seconds": 604800
}
get_week_year()
{
"date": "2026-02-02",
"day_of_week": "Monday",
"day_of_week_number": 1,
"week_number": 5,
"iso_week": 6,
"iso_year": 2026,
"day_of_year": 33,
"days_remaining_in_year": 332,
"is_weekend": false,
"quarter": 1
}
Development
uv sync
uv run mcp-datetimeday
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mcp_datetimeday-0.1.0.tar.gz
(92.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_datetimeday-0.1.0.tar.gz.
File metadata
- Download URL: mcp_datetimeday-0.1.0.tar.gz
- Upload date:
- Size: 92.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.24
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b774a62d08742cd0c39a2ab2a1a4aa5cf3712aff66d4d2ae2408033ef3363438
|
|
| MD5 |
f533032179b580bf2dd2dd9c087cfee3
|
|
| BLAKE2b-256 |
a00809364266d478f2c7f6e4e8888a6c5df9d9aa48d4880e79757a784e208e43
|
File details
Details for the file mcp_datetimeday-0.1.0-py3-none-any.whl.
File metadata
- Download URL: mcp_datetimeday-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.24
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
038a6e1ae61f663e0874b3262c4d2dca860ffd86dcd8baf1666f4bb797d38846
|
|
| MD5 |
9f630dd989fdf83d12400ea2b4d77943
|
|
| BLAKE2b-256 |
c872696cc4e6d698c02701b16d77fa4f81ba39a994acc5efdc2c5624977dc4bf
|