MCP Time Server
A Model Context Protocol (MCP) server that provides time and date functionality. This server exposes tools for getting current time, date, and formatting timestamps in various formats and timezones.
Features
get_current_time: Get current time in ISO, local, UTC, or Unix timestamp format
get_current_date: Get current date in various formats (ISO, local, short, long, custom)
get_datetime_info: Get comprehensive date/time information including timezone details
format_timestamp: Format any Unix timestamp to readable formats
Installation
clone MCP server:
Save the server code as
timeserver.jsand the package configuration aspackage.jsonInstall dependencies:
If in Linux Make the server executable:
Usage
Running the Server
The server runs on stdio transport (standard input/output):
To run the server, you need to add it to your MCP configuration. For example, if you are using Claude Desktop, you can do this by modifying the claude_desktop_config.json file, for some reason Claude might not recognize the server untill you reinstall the claude desktop app, so you might need to do that after adding the server.
Example Configuration for Claude Desktop
Available Tools
1. get_current_time
Get the current time in various formats.
Parameters:
format(optional): "iso", "local", "utc", or "unix" (default: "iso")timezone(optional): Timezone string like "America/New_York" (default: "local")
Example:
2. get_current_date
Get the current date in various formats.
Parameters:
format(optional): "iso", "local", "short", "long", or "custom" (default: "iso")customFormat(optional): JSON string of Intl.DateTimeFormat options (when format is "custom")timezone(optional): Timezone string (default: "local")
Example:
3. get_datetime_info
Get comprehensive date and time information.
Parameters:
timezone(optional): Timezone string (default: "local")
Example:
4. format_timestamp
Format a Unix timestamp.
Parameters:
timestamp(required): Unix timestamp in millisecondsformat(optional): "iso", "local", "utc", or "custom" (default: "iso")timezone(optional): Timezone string (default: "local")
Example:
Integration with MCP Clients
To use this server with an MCP client (like Claude Desktop), add it to your MCP configuration:
Claude Desktop Configuration
Add to your claude_desktop_config.json:
Other MCP Clients
For other MCP clients, refer to their documentation on how to configure MCP servers. The server uses stdio transport and follows the standard MCP protocol.
Example Responses
Current Time (ISO format):
Current Date (long format):
DateTime Info:
Development
To run in development mode with debugging:
Error Handling
The server includes comprehensive error handling for:
Invalid timezones
Invalid timestamps
Malformed custom format strings
Missing required parameters
License
MIT License