Skip to main content
Glama
PierreGode

MCP Time Server

by PierreGode

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.

image

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

Related MCP server: Time MCP Server

Installation

  1. clone MCP server:

git clone https://github.com/PierreGode/timeMCP.git
cd timeMCP
  1. Save the server code as timeserver.js and the package configuration as package.json

  2. Install dependencies:

npm install
  1. If in Linux Make the server executable:

chmod +x timeserver.js

Usage

Running the Server

The server runs on stdio transport (standard input/output):

node timeserver.js

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

edit claude_desktop_config.json
```bash
{
  "mcpServers": {
    "time-server": {
      "command": "node",
      "args": ["C:\\Users\\youruser\\Documents\\timeMCP\\timeserver.js"],
      "env": {}
    }
  }
}

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:

{
  "format": "local",
  "timezone": "Europe/London"
}

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:

{
  "format": "long",
  "timezone": "Asia/Tokyo"
}

3. get_datetime_info

Get comprehensive date and time information.

Parameters:

  • timezone (optional): Timezone string (default: "local")

Example:

{
  "timezone": "America/Los_Angeles"
}

4. format_timestamp

Format a Unix timestamp.

Parameters:

  • timestamp (required): Unix timestamp in milliseconds

  • format (optional): "iso", "local", "utc", or "custom" (default: "iso")

  • timezone (optional): Timezone string (default: "local")

Example:

{
  "timestamp": 1703097600000,
  "format": "local",
  "timezone": "UTC"
}

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:

{
  "mcpServers": {
    "time-server": {
      "command": "node",
      "args": ["/path/to/your/mcp-time-server/server.js"],
      "env": {}
    }
  }
}

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 time (iso): 2024-12-20T14:30:45.123Z

Current Date (long format):

Current date (long): Friday, December 20, 2024

DateTime Info:

{
  "timestamp": 1703097845123,
  "iso": "2024-12-20T14:30:45.123Z",
  "local": "12/20/2024, 2:30:45 PM",
  "utc": "Fri, 20 Dec 2024 14:30:45 GMT",
  "unix": 1703097845,
  "year": 2024,
  "month": 12,
  "day": 20,
  "hour": 14,
  "minute": 30,
  "second": 45,
  "dayOfWeek": "Friday",
  "timezone": "America/New_York"
}

Development

To run in development mode with debugging:

npm run dev

Error Handling

The server includes comprehensive error handling for:

  • Invalid timezones

  • Invalid timestamps

  • Malformed custom format strings

  • Missing required parameters

License

MIT License

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    Gives large language models time awareness capabilities through various time-related functions including current time retrieval, timezone conversion, and relative time calculations.
    Last updated
    6
    1,466
    MIT
  • A
    license
    C
    quality
    D
    maintenance
    Provides current time and date information with timezone support and multiple formatting options. Enables AI assistants to answer time-related queries in different timezones with detailed temporal information.
    Last updated
    2
    30
    MIT
  • A
    license
    A
    quality
    -
    maintenance
    Provides AI assistants with real-time date, time, and timezone information, enabling them to access current temporal data, format dates, calculate day of week, and work with different timezones.
    Last updated
    4
    7
  • A
    license
    -
    quality
    D
    maintenance
    Provides tools to get the current date and time in various formats (ISO, Unix timestamp, human-readable, custom) with configurable timezone support.
    Last updated
    MIT

View all related MCP servers

Related MCP Connectors

  • Convert and compare dates and times across any timezone with flexible, locale-aware formatting. Ad…

  • A real clock for AI agents: current time, timezone conversion, and DST facts from the IANA tzdb.

  • Timezone tools for agents: convert, world clock, offset, lookup, date math, holidays, slots. x402

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/PierreGode/timeMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server