Now MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Now MCPWhat time is it in Tokyo?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Now MCP
A Model Context Protocol (MCP) server that provides time-related tools and resources for Claude and other MCP clients.
Features
Tools
get-current-time - Get the current date and time in various formats
Supports ISO, Unix timestamp, local, and UTC formats
Optional timezone specification
convert-timezone - Convert time between different timezones
Convert from one timezone to another
Multiple output formats supported
format-time - Format time according to specified patterns and locales
Custom format patterns
Locale-specific formatting
Timezone-aware formatting
get-timezone-info - Get detailed information about a timezone
Timezone name and offset
Current time in the specified timezone
Resources
time://current - Current time in ISO format
time://timezone/{timezone} - Current time in a specific timezone
time://timezones - List of common timezone identifiers
Related MCP server: mcp-now
Installation
npm install now-mcpUsage
With Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"time-server": {
"command": "npx",
"args": ["-y", "now-mcp"]
}
}
}Direct Usage
# Install dependencies
npm install
# Build the project
npm run build
# Run the server
npm startDevelopment
# Install dependencies
npm install
# Run in development mode
npm run devExamples
Get Current Time
// Get current time in ISO format
await callTool("get-current-time", {});
// Get current time in a specific timezone
await callTool("get-current-time", {
format: "local",
timezone: "America/New_York"
});Convert Timezone
await callTool("convert-timezone", {
datetime: "2025-09-11T10:30:00Z",
fromTimezone: "UTC",
toTimezone: "Asia/Tokyo",
format: "local"
});Format Time
await callTool("format-time", {
datetime: "2025-09-11T10:30:00Z",
locale: "en-US",
timezone: "America/New_York"
});Get Timezone Information
await callTool("get-timezone-info", {
timezone: "Europe/London"
});Supported Timezones
The server supports all standard IANA timezone identifiers. Common examples include:
UTC
America/New_York
America/Chicago
America/Denver
America/Los_Angeles
Europe/London
Europe/Paris
Europe/Berlin
Asia/Tokyo
Asia/Shanghai
Asia/Kolkata
Australia/Sydney
Pacific/Auckland
API Reference
Tools
get-current-time
Get the current date and time.
Parameters:
format(optional): Output format - "iso", "unix", "local", or "utc" (default: "iso")timezone(optional): Timezone identifier (e.g., "America/New_York")
convert-timezone
Convert time between timezones.
Parameters:
datetime: Date and time to convert (ISO format or parseable string)fromTimezone: Source timezone identifiertoTimezone: Target timezone identifierformat(optional): Output format - "iso", "local", or "utc" (default: "local")
format-time
Format time according to specified pattern and locale.
Parameters:
datetime: Date and time to format (ISO format or parseable string)format(optional): Format pattern (default: "YYYY-MM-DD HH:mm:ss")locale(optional): Locale for formatting (default: "en-US")timezone(optional): Timezone for formatting
get-timezone-info
Get information about a timezone.
Parameters:
timezone: Timezone identifier
Resources
time://current
Returns the current time in ISO format.
time://timezone/{timezone}
Returns the current time in the specified timezone.
Parameters:
timezone: Timezone identifier (URL parameter)
time://timezones
Returns a JSON list of common timezone identifiers.
License
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Support
For issues and questions, please open an issue on the GitHub repository.
This server cannot be deployed
Maintenance
Related MCP Connectors
Timezone MCP — wraps WorldTimeAPI (free, no auth)
Get the current time in any timezone and quickly look up common timezone info. Set a default timez…
Get the current time in your chosen timezone and view common timezone information. Simplify schedu…
Current time in any IANA time zone, plus the full time-zone list. Via timeapi.io.
Related MCP Servers
- FlicenseAqualityNot gradedmaintenanceProvides timezone-aware date and time information with configurable time formats and timezone support. Enables users to get current date and time in their preferred timezone and format through simple MCP tools.2-
- AlicenseAqualityCmaintenanceProvides tools to get the current date and time, with optional timezone support, designed for testing MCP compatibility.26 npmMIT
- AlicenseNot gradedqualityDmaintenanceProvides date, time, and timezone tools for AI agents via MCP, including timezone conversion, date calculation, cron parsing, timestamp conversion, and duration formatting.24 npmMIT
- AlicenseAqualityAmaintenanceMCP server for time, timezone, and duration operations. Enables getting current time in any timezone, converting timestamps between timezones, adding/subtracting ISO-8601 durations, and computing time between two timestamps.510 npm1MIT