npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@pulseengine/timedate-mcp-server

v0.4.0

Published

TimeDate MCP Server - A Model Context Protocol server for time and date operations with timezone support

Readme

TimeDate MCP Server

A Model Context Protocol (MCP) server providing comprehensive time and date operations with timezone support, built with Rust and the PulseEngine MCP framework.

Features

  • Current Time: Get current time in any timezone
  • Time Calculations: Add/subtract time from dates
  • Timezone Conversion: Convert time between different timezones
  • Timezone Information: Get detailed timezone data including DST status
  • Time Format Detection: Detect and work with 12-hour/24-hour formats
  • Timezone Listing: Browse available timezones with filtering

Installation

Quick Start (Recommended)

Run without installation using npx:

npx @pulseengine/timedate-mcp-server

Global Installation

npm install -g @pulseengine/timedate-mcp-server
timedate-mcp-server

Local Installation

npm install @pulseengine/timedate-mcp-server
npx timedate-mcp-server

Available Tools

get_current_time

Get the current time in the specified timezone (defaults to UTC).

Parameters:

  • timezone (optional): Target timezone (e.g., "America/New_York", "Europe/London")

get_time_at

Get time at a specific date and timezone.

Parameters:

  • date_time: Date/time string (RFC3339, "YYYY-MM-DD HH:MM:SS", or "YYYY-MM-DD")
  • timezone (optional): Target timezone

calculate_time_offset

Add or subtract time from a given date.

Parameters:

  • base_time: Base time ("now" or date string)
  • offset_hours: Hours to add (positive) or subtract (negative)
  • timezone (optional): Target timezone

get_timezone_info

Get information about the current system timezone.

convert_timezone

Convert time between different timezones.

Parameters:

  • time: Time to convert ("now" or date string)
  • from_timezone: Source timezone
  • to_timezone: Target timezone

get_time_format

Detect time format preference (12-hour vs 24-hour).

list_timezones

List available timezones with optional filtering.

Parameters:

  • filter (optional): Filter string to match timezone names

Example Usage

// Get current time in Tokyo
await server.get_current_time({ timezone: "Asia/Tokyo" });

// Convert New York time to London time
await server.convert_timezone({
  time: "2024-01-15 14:30:00",
  from_timezone: "America/New_York",
  to_timezone: "Europe/London"
});

// Add 5 hours to current time
await server.calculate_time_offset({
  base_time: "now",
  offset_hours: 5,
  timezone: "UTC"
});

Response Format

All time responses include:

  • timestamp: ISO 8601/RFC3339 formatted time
  • timezone: Timezone identifier
  • utc_offset: UTC offset (e.g., "+0900", "-0500")
  • is_dst: Daylight saving time status
  • format_12h: 12-hour format display
  • format_24h: 24-hour format display

Supported Platforms

  • macOS: Intel (x64) and Apple Silicon (arm64)
  • Linux: x64
  • Windows: x64

Architecture

Built using:

  • Rust: Core implementation for performance and safety
  • PulseEngine MCP Framework: MCP protocol implementation with macros
  • Chrono & Chrono-TZ: Comprehensive timezone and datetime handling
  • Tokio: Async runtime for scalable operations

Environment Variables

  • PULSEENGINE_MCP_MASTER_KEY: (Optional) Master key for authentication

Development

Building from Source

# Clone the repository
git clone https://github.com/pulseengine/timedate-mcp.git
cd timedate-mcp

# Build the project
cargo build --release

# Run tests
cargo test

# Run the server
cargo run

License

MIT License - see LICENSE for details.

Contributing

Contributions welcome! Please read our contributing guidelines and submit pull requests to our GitHub repository.