mcp-simple-timeserver
# MCP Simple Timeserver [](https://smithery.ai/server/mcp-simple-timeserver) *Anthropic이 내린 이상한 설계 결정 중 하나는 Claude에게 사용자가 보낸 메시지의 타임스탬프나 현재 시간을 알 수 없게 만든 것입니다. 불쌍한 Claude는 지금이 몇 시인지 알 수 없습니다! `mcp-simple-timeserver`는 이를 해결하기 위한 간단한 MCP server입니다.* 이 서버는 두 가지 도구를 제공합니다: - `get_local_time`: 사용자의 기기에서 현재 현지 시간과 시간대 정보를 제공합니다. 이를 통해 Claude는 사용자의 위치에서 현재 몇 시인지 알 수 있습니다. 또한 원한다면 사용자와의 마지막 상호작용 이후 얼마나 시간이 지났는지 계산할 수도 있습니다. - `get_utc`: [NTP 타임 서버](https://en.wikipedia.org/wiki/Network_Time_Protocol)에서 가져온 현재 UTC 시간을 제공합니다. ## 설치 ### Smithery를 통한 설치 [Smithery](https://smithery.ai/server/mcp-simple-timeserver)를 통해 Claude Desktop용 Simple Timeserver를 자동으로 설치하려면 다음 명령어를 사용하세요: ```bash npx -y @smithery/cli install mcp-simple-timeserver --client claude ``` ### 수동 설치 먼저 다음 명령어를 사용하여 모듈을 설치하세요: ```bash pip install mcp-simple-timeserver ``` 그런 다음 MCP client인 [Claude 데스크톱 앱](https://claude.ai/download)에서 설정하세요. Mac OS에서의 설정 예시는 다음과 같습니다: ```json "mcpServers": { "simple-timeserver": { "command": "python", "args": ["-m", "mcp_simple_timeserver"] } } ``` Windows의 경우 `cmd`(Windows 명령 프롬프트)에서 `where python`을 사용하여 Python 실행 파일의 경로를 확인해야 합니다. 일반적인 설정은 다음과 같습니다: ```json "mcpServers": { "simple-timeserver": { "command": "C:\\\\Users\\\\YOUR_USERNAME\\\\AppData\\\\Local\\\\Programs\\\\Python\\\\Python311\\\\python.exe", "args": ["-m", "mcp_simple_timeserver"] } } ``` ## 웹 서버 버전 이 프로젝트에는 독립형 웹 서버로 배포할 수 있는 네트워크 호스팅 버전도 포함되어 있습니다. 실행 및 배포 방법에 대한 지침은 [웹 서버 배포 가이드](WEB_DEPLOYMENT.md)를 참조하세요. 또는 https://mcp.andybrandt.net/timeserver를 Claude에 추가하여 제 서버를 간단히 사용할 수도 있습니다. (*현재 이 서버는 LLM의 쿼리에 응답하여 데이터를 제공하기 위해 `search()` 및 `fetch()` 도구를 구현하는 MCP server에서만 작동하므로 ChatGPT와는 호환되지 않습니다.*) ---
MCP Simple Timeserver
One of the strange design decisions Anthropic made was depriving Claude of timestamps for messages sent by the user or current time in general. Poor Claude can't tell what time it is! mcp-simple-timeserver is a simple MCP server that fixes that.
This server provides two tools:
get_local_timeprovides the current local time and timezone information from the user's machine. This way Claude can know what time it is at the user's location. He can also calculate how much time passed since his last interaction with the user should he want to do so.get_utcprovides current UTC time obtained from an NTP time server.
Installation
Installing via Smithery
To install Simple Timeserver for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install mcp-simple-timeserver --client claude
Manual Installation
First install the module using:
pip install mcp-simple-timeserver
Then configure in MCP client - the Claude desktop app.
Under Mac OS this will look like this:
"mcpServers": {
"simple-timeserver": {
"command": "python",
"args": ["-m", "mcp_simple_timeserver"]
}
}
Under Windows you have to check the path to your Python executable using where python in the cmd (Windows command line).
Typical configuration would look like this:
"mcpServers": {
"simple-timeserver": {
"command": "C:\\Users\\YOUR_USERNAME\\AppData\\Local\\Programs\\Python\\Python311\\python.exe",
"args": ["-m", "mcp_simple_timeserver"]
}
}
Web Server Variant
This project also includes a network-hostable version that can be deployed as a standalone web server. For instructions on how to run and deploy it, please see the Web Server Deployment Guide.
Or you can simply use my server by adding it under https://mcp.andybrandt.net/timeserver to Claude. (It does not work with ChatGPT since it currently works only with MCP servers that implement search() and fetch() tools to serve data in response to LLM's querries).
Recommend MCP Servers 💡
apiweaver
APIWeaver is a FastMCP server that dynamically creates MCP servers from web API configurations, enabling AI assistants to integrate with any REST API, GraphQL endpoint, or web service.
mcp-mermaid
An MCP server that dynamically generates Mermaid diagrams and charts using AI.
srcgrp/sentry-mcp-server
Integrates Sentry error tracking into MCP-enabled environments, providing access to release health data and issue details.
claude-debugs-for-you
Enable any LLM (e.g. Claude) to interactively debug any language for you via MCP and a VS Code Extension
aaomidi/mcp-bazel
An MCP server that exposes Bazel tools for build, test, and dependency analysis.
HuaLuAI/CAD-MCP
An MCP server that enables controlling CAD software (AutoCAD, GstarCAD, ZWCAD) for drawing operations through natural language instructions.
