MCP Time Server Node
Provides comprehensive time manipulation capabilities including timezone conversions, date arithmetic, business day calculations, duration calculations, and recurring event handling. Enables natural language time queries with high performance and intelligent caching.
README
MCP Time Server Node
A comprehensive Node.js time manipulation server implementing the Model Context Protocol (MCP) for LLMs like Claude. This server provides powerful time-related operations including timezone conversions, date arithmetic, business day calculations, and more.
Features
- 🌍 Timezone Operations: Convert times between any IANA timezones
- ⏰ Current Time: Get current time in any timezone with custom formatting
- ➕➖ Date Arithmetic: Add or subtract time periods from dates
- 📊 Duration Calculations: Calculate time between dates in various units
- 💼 Business Days: Calculate business days excluding weekends and holidays
- ⏱️ Business Hours: Calculate working hours between timestamps with timezone support
- 🔄 Recurring Events: Find next occurrences of recurring patterns
- 📝 Flexible Formatting: Format times in relative, calendar, or custom formats
- 📅 Days Until: Calculate days until any date or event
- 🚀 High Performance: Response times < 10ms with intelligent caching
- 🔒 Security Hardened: Input validation, cache key hashing, ESLint security rules
- 🛡️ Rate Limiting: Configurable rate limits to prevent abuse
- ✅ Thoroughly Tested: 703+ tests with 100% coverage
Installation
Using npm (recommended)
npm install -g mcp-time-server-node
Using Claude Code (claude mcp add)
Add the server to Claude Code:
# For npm-published version (when available)
claude mcp add mcp-time-server-node
# For local development/testing
claude mcp add tim-server /path/to/mcp-time-server-node/dist/index.js
Using Claude Desktop
Manually add to your claude_desktop_config.json:
{
"mcpServers": {
"time-server": {
"command": "npx",
"args": ["-y", "mcp-time-server-node"],
"env": {
"NODE_ENV": "production"
}
}
}
}
Local Testing
For testing before npm publish:
# Build the project
make build
# Test directly
echo '{"jsonrpc":"2.0","method":"tools/list","id":1,"params":{}}' | node dist/index.js
# Or add to Claude Code for local testing
cd mcp-time-server-node
claude mcp add time-server-local $(pwd)/dist/index.js
Available Tools
1. get_current_time
Get the current time in any timezone.
Parameters:
timezone(optional): IANA timezone name (default: "UTC")format(optional): date-fns format stringinclude_offset(optional): Include UTC offset (default: true)
Example:
{
"timezone": "America/New_York",
"format": "yyyy-MM-dd HH:mm:ss"
}
2. convert_timezone
Convert time between timezones.
Parameters:
time(required): Input time in ISO format or parseable stringfrom_timezone(required): Source IANA timezoneto_timezone(required): Target IANA timezoneformat(optional): Output format string
Example:
{
"time": "2025-01-20T15:00:00Z",
"from_timezone": "UTC",
"to_timezone": "Asia/Tokyo"
}
3. add_time
Add a duration to a date/time.
Parameters:
time(required): Base timeamount(required): Amount to addunit(required): Unit ("years", "months", "days", "hours", "minutes", "seconds")timezone(optional): Timezone for calculation
Example:
{
"time": "2025-01-20",
"amount": 3,
"unit": "days"
}
4. subtract_time
Subtract a duration from a date/time.
Parameters:
- Same as
add_time
5. calculate_duration
Calculate the duration between two times.
Parameters:
start_time(required): Start timeend_time(required): End timeunit(optional): Output unit ("auto", "milliseconds", "seconds", "minutes", "hours", "days")timezone(optional): Timezone for parsing
Example:
{
"start_time": "2025-01-20T09:00:00",
"end_time": "2025-01-20T17:30:00"
}
6. get_business_days
Calculate business days between dates.
Parameters:
start_date(required): Start dateend_date(required): End dateexclude_weekends(optional): Exclude Saturdays and Sundays (default: true)holidays(optional): Array of holiday dates in ISO formattimezone(optional): Timezone for calculation
Example:
{
"start_date": "2025-01-01",
"end_date": "2025-01-31",
"holidays": ["2025-01-01", "2025-01-20"]
}
7. next_occurrence
Find the next occurrence of a recurring event.
Parameters:
pattern(required): "daily", "weekly", "monthly", or "yearly"start_from(optional): Start searching from this date (default: now)day_of_week(optional): For weekly pattern (0-6, where 0 is Sunday)day_of_month(optional): For monthly pattern (1-31)time(optional): Time in HH:mm formattimezone(optional): Timezone for calculation
Example:
{
"pattern": "weekly",
"day_of_week": 1,
"time": "09:00"
}
8. format_time
Format time in various human-readable formats.
Parameters:
time(required): Time to formatformat(required): "relative", "calendar", or "custom"custom_format(optional): Format string when using "custom" formattimezone(optional): Timezone for display
Example:
{
"time": "2025-01-20T15:00:00Z",
"format": "relative"
}
9. calculate_business_hours
Calculate business hours between two times.
Parameters:
start_time(required): Start timeend_time(required): End timebusiness_hours(optional): Business hours definition (default: 9 AM - 5 PM)- Can be a single object:
{ start: { hour: 9, minute: 0 }, end: { hour: 17, minute: 0 } } - Or weekly schedule:
{ 0: null, 1: { start: {...}, end: {...} }, ... }(0=Sunday, 6=Saturday)
- Can be a single object:
timezone(optional): Timezone for calculationholidays(optional): Array of holiday datesinclude_weekends(optional): Include weekends in calculation (default: false)
Example:
{
"start_time": "2025-01-20T08:00:00",
"end_time": "2025-01-24T18:00:00",
"business_hours": {
"start": { "hour": 9, "minute": 0 },
"end": { "hour": 17, "minute": 30 }
},
"holidays": ["2025-01-22"],
"timezone": "America/New_York"
}
10. days_until
Calculate days until a target date or event.
Parameters:
target_date(required): Target date (ISO string, natural language like "next Christmas", or Unix timestamp)timezone(optional): Timezone for calculation (default: system timezone)format_result(optional): Return formatted string instead of number (default: false)
Example:
{
"target_date": "2025-12-25",
"timezone": "America/New_York"
}
Environment Variables
NODE_ENV: Set to "production" for production useRATE_LIMIT: Maximum requests per minute (default: 100)RATE_LIMIT_WINDOW: Rate limit window in milliseconds (default: 60000)CACHE_SIZE: Maximum cache entries (default: 10000)DEFAULT_TIMEZONE: Override system timezone detection (e.g., "America/New_York")MAX_LISTENERS: Maximum concurrent requests (default: 20, minimum: 10)
Performance
- All operations complete in < 10ms (after initial load)
- Intelligent caching reduces repeated calculations
- Sliding window rate limiting prevents abuse
- Memory-efficient implementation
Error Handling
The server returns structured errors with codes:
INVALID_TIMEZONE: Invalid timezone specifiedINVALID_DATE_FORMAT: Cannot parse the provided dateINVALID_UNIT: Invalid time unit specifiedRATE_LIMIT_EXCEEDED: Too many requestsINVALID_RECURRENCE_PATTERN: Invalid recurrence pattern
Development
Current Status
We are actively refactoring the codebase to reduce duplication and improve maintainability. See:
- Refactoring Roadmap - Our plan to reduce code duplication from 18% to under 5%
- Refactoring Status - Current progress on the refactoring phases
Building from source
git clone https://github.com/pshempel/mcp-time-node.git
cd mcp-time-server-node
make setup # Install dependencies and build
make test # Run all tests
Running tests
make test # Run all tests
make coverage # Run with coverage report
make test-watch # Run in watch mode for TDD
# If tests fail unexpectedly:
make test-quick # Fix Jest issues and run tests
make reset # Full environment reset
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
MIT License - see LICENSE file for details
Author
pshempel
Acknowledgments
Built with:
- Model Context Protocol SDK
- date-fns for date manipulation
- date-fns-tz for timezone support
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。