MCP cover image
See in Github
2025-05-05

Simple solution to give Claude ability to check current time via MCP

1

Github Watches

7

Github Forks

15

Github Stars

MseeP.ai Security Assessment Badge

MCP Simple Timeserver

smithery badge

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_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.

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"]
  }
}

相关推荐

  • sirmews
  • Read your Apple Notes with Claude Model Context Protocol

  • ttommyth
  • Vibe coding should have human in the loop! interactive-mcp: Local, cross-platform MCP server for interact with your AI Agent

  • mzxrai
  • Chat with OpenAI models from Claude Desktop

  • Badhansen
  • A simple Model Context Protocol (MCP) server that integrates with Notion's API to manage my personal todo list.

  • magarcia
  • An implementation of Giphy integration with Model Context Protocol

  • nguyenvanduocit
  • 🚀 All-in-one MCP server with AI search, RAG, and multi-service integrations (GitLab/Jira/Confluence/YouTube) for AI-enhanced development workflows

  • pierrebrunelle
  • Query OpenAI models directly from Claude using MCP protocol.

  • nick1udwig
  • The coding agent for professionals

  • ZeparHyfar
  • A MCP server for datetime formatting and file name generation.

  • hiromitsusasaki
  • An integration that allows LLMs to interact with Raindrop.io bookmarks using the Model Context Protocol (MCP).

  • danhilse
  • A simple MCP integration that allows Claude to read and manage a personal Notion todo list

    Reviews

    5 (0)