
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@pulseengine/timedate-mcp-server
Advanced tools
TimeDate MCP Server - A Model Context Protocol server for time and date operations with timezone support
A Model Context Protocol (MCP) server providing comprehensive time and date operations with timezone support, built with Rust and the PulseEngine MCP framework.
Run without installation using npx:
npx @pulseengine/timedate-mcp-server
npm install -g @pulseengine/timedate-mcp-server
timedate-mcp-server
npm install @pulseengine/timedate-mcp-server
npx timedate-mcp-server
get_current_timeGet the current time in the specified timezone (defaults to UTC).
Parameters:
timezone (optional): Target timezone (e.g., "America/New_York", "Europe/London")get_time_atGet 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 timezonecalculate_time_offsetAdd 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 timezoneget_timezone_infoGet information about the current system timezone.
convert_timezoneConvert time between different timezones.
Parameters:
time: Time to convert ("now" or date string)from_timezone: Source timezoneto_timezone: Target timezoneget_time_formatDetect time format preference (12-hour vs 24-hour).
list_timezonesList available timezones with optional filtering.
Parameters:
filter (optional): Filter string to match timezone names// 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"
});
All time responses include:
timestamp: ISO 8601/RFC3339 formatted timetimezone: Timezone identifierutc_offset: UTC offset (e.g., "+0900", "-0500")is_dst: Daylight saving time statusformat_12h: 12-hour format displayformat_24h: 24-hour format displayBuilt using:
PULSEENGINE_MCP_MASTER_KEY: (Optional) Master key for authentication# 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
MIT License - see LICENSE for details.
Contributions welcome! Please read our contributing guidelines and submit pull requests to our GitHub repository.
FAQs
TimeDate MCP Server - A Model Context Protocol server for time and date operations with timezone support
We found that @pulseengine/timedate-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.