A simple MCP server that exposes datetime information to agentic systems and chat REPLs The server implements a simple datetime:// URI scheme for accessing the current date/time in a given timezone, for example: The server exposes a tool to get the current local time in the system timezone: use the following json
Add this skill
npx mdskills install SecretiveShell/mcp-timeserverProvides timezone-aware datetime via resources and tools with straightforward setup
1# MCP-timeserver23A simple MCP server that exposes datetime information to agentic systems and chat REPLs45<a href="https://glama.ai/mcp/servers/tth5eto5n7"><img width="380" height="200" src="https://glama.ai/mcp/servers/tth5eto5n7/badge" alt="MCP-timeserver MCP server" /></a>67## Components89### Resources1011The server implements a simple datetime:// URI scheme for accessing the current date/time in a given timezone, for example:12```13datetime://Africa/Freetown/now14datetime://Europe/London/now15datetime://America/New_York/now16```1718### Tools1920The server exposes a tool to get the current local time in the system timezone:21```python22>>> get_current_time()23"The current time is 2024-12-18 19:59:36"24```2526## Quickstart2728### Install2930use the following json3132```json33{34 "mcpServers": {35 "MCP-timeserver": {36 "command": "uvx",37 "args": ["MCP-timeserver"]38 }39 }40}41```42
Full transparency — inspect the skill content before installing.