MCP Time Server
Provides time and date functionality with support for multiple formats and timezones, enabling users to get current time/date, format timestamps, and retrieve comprehensive datetime information.
README
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.
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
Installation
- clone MCP server:
git clone https://github.com/PierreGode/timeMCP.git
cd timeMCP
-
Save the server code as
timeserver.jsand the package configuration aspackage.json -
Install dependencies:
npm install
- 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 millisecondsformat(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
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。