home / mcp / datetimeday mcp server
Provides date, time, and day-of-week utilities via an MCP server with tools for current date/time, relative times, and time zone conversions.
Configuration
View docs{
"mcpServers": {
"cfdude-mcp-datetimeday": {
"url": "https://placeholder.invalid/mcp-datetimeday"
}
}
}You can use the mcp-datetimeday server to access date, time, and day of week information through your MCP client. It offers convenient tools for obtaining current date and time, calculating relative times, and converting time across time zones, all via a lightweight Python-based MCP server that you can run locally or via a containerized workflow.
You interact with this MCP server through an MCP client or integration that can call named tools. The available tools expose practical date and time utilities you can incorporate into your workflows.
Prerequisites you need on your system include Python and a compatible environment for running MCP servers.
pip install mcp-datetimeday
```
```
uv pip install mcp-datetimedayOptionally, you can run the server using the UV runtime for development or local testing.
uv run mcp-datetimedayYou can also configure Claude to connect to this MCP server. Use Claude in code to add the MCP server, or configure Claude Desktop with the provided settings.
claude mcp add --scope user mcp-datetimeday -- uvx mcp-datetimeday{
"mcpServers": {
"datetimeday": {
"command": "uvx",
"args": ["mcp-datetimeday"]
}
}
}No authentication or API keys are shown in the usage materials. If you use it in a shared environment, consider implementing your own access controls where appropriate.
Retrieve the current date and time with the day of the week, offering options to format the output and to select a time zone.
Compute the relative time between two dates, returning phrases like 'in 3 days' or '2 weeks ago'.
Return the number of days in a given month and provide first/last day information for that month.
Convert a time value between different time zones.
Return week-related information such as week numbers, ISO week, day of year, quarter, and related metrics.