mcp-simple-timeserver
# MCP Simple Timeserver [](https://smithery.ai/server/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_time` provides 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_utc` provides current UTC time obtained from an [NTP time server](https://en.wikipedia.org/wiki/Network_Time_Protocol). ## Installation ### Installing via Smithery To install Simple Timeserver for Claude Desktop automatically via [Smithery](https://smithery.ai/server/mcp-simple-timeserver): ```bash npx -y @smithery/cli install mcp-simple-timeserver --client claude ``` ### Manual Installation First install the module using: ```bash pip install mcp-simple-timeserver ``` Then configure in MCP client - the [Claude desktop app](https://claude.ai/download). Under Mac OS this will look like this: ```json "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: ```json "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](WEB_DEPLOYMENT.md). 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 💡
vimble-mcp
An MCP server for executing JavaScript code in a sandboxed environment using Vimble, offering time-limited execution and debug mode.
code-sandbox-mcp
A secure sandbox environment for executing code within Docker containers, providing AI applications with isolated code execution.
truto-mcp-stdio
A CLI stdio proxy for HTTP Streamable MCP servers, forwarding JSON-RPC messages between stdin/stdout and a specified endpoint.
screenshotone
An official MCP server implementation for the ScreenshotOne API, enabling AI models to render website screenshots.
@janreges/ai-distiller-mcp
AI Distiller is ultra‑fast, open‑source tool for intelligently extracting only the essential public APIs, types, and structure from large codebases. Compresses 90–98% of code into AI‑friendly context, integrates via CLI or MCP, supports 12+ languages, and AI prompt workflows for cleaner, cost‑effective AI development.
claude-debugs-for-you
Enable any LLM (e.g. Claude) to interactively debug any language for you via MCP and a VS Code Extension