See what people built during the Apps HackathonExplore the gallery
Back to Catalog

MCP-timeserver

SecretiveShell/MCP-timeserver
🔗 Latest commit:95ae3ad
Python
AI Tools

A simple MCP server that exposes datetime information to agentic systems and chat REPLs

GitHub Metrics
Repository statistics and activity
⭐ GitHub Stars:39
👥 Contributors:2
📋 Total Issues:3
📦 Has Releases:No
🔧 Has CI/CD Pipeline:No
Configuration
Configuration example extracted from README.md for Claude Desktop and other clients.
{
  "MCP-timeserver": {
    "command": "uvx",
    "args": [
      "MCP-timeserver"
    ],
    "env": {}
  }
}
README.md

MCP-timeserver

A simple MCP server that exposes datetime information to agentic systems and chat REPLs

MCP-timeserver MCP server

Components

Resources

The server implements a simple datetime:// URI scheme for accessing the current date/time in a given timezone, for example:

datetime://Africa/Freetown/now
datetime://Europe/London/now
datetime://America/New_York/now

Tools

The server exposes a tool to get the current local time in the system timezone:

>>> get_current_time()
"The current time is 2024-12-18 19:59:36"

Quickstart

Install

use the following json

{
  "mcpServers": {
    "MCP-timeserver": {
      "command": "uvx",
      "args": ["MCP-timeserver"]
    }
  }
}