{"id":23479543,"url":"https://github.com/andybrandt/mcp-simple-timeserver","last_synced_at":"2025-12-25T13:08:55.657Z","repository":{"id":265967955,"uuid":"896931779","full_name":"andybrandt/mcp-simple-timeserver","owner":"andybrandt","description":"Simple solution to give Claude ability to check current time via MCP","archived":false,"fork":false,"pushed_at":"2024-12-01T20:51:18.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-01T21:15:30.745Z","etag":null,"topics":["claude","claude-ai","mcp","model-context-protocol"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/mcp-simple-timeserver/1.0.2/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andybrandt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-01T16:54:06.000Z","updated_at":"2024-12-01T21:10:14.000Z","dependencies_parsed_at":"2024-12-01T21:15:35.140Z","dependency_job_id":null,"html_url":"https://github.com/andybrandt/mcp-simple-timeserver","commit_stats":null,"previous_names":["andybrandt/mcp-simple-timeserver"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andybrandt%2Fmcp-simple-timeserver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andybrandt%2Fmcp-simple-timeserver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andybrandt%2Fmcp-simple-timeserver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andybrandt%2Fmcp-simple-timeserver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andybrandt","download_url":"https://codeload.github.com/andybrandt/mcp-simple-timeserver/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":231145295,"owners_count":18334633,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["claude","claude-ai","mcp","model-context-protocol"],"created_at":"2024-12-24T19:30:11.521Z","updated_at":"2025-12-25T13:08:55.615Z","avatar_url":"https://github.com/andybrandt.png","language":"Python","funding_links":[],"categories":["Developer Tools","MCP 服务器精选列表","Legend","サーバー実装","MCP Servers","Cloud Services","Other Tools and Integrations","カテゴリ","💻 Operating Systems \u0026 Command Line","🤖 AI/ML","Table of Contents","Utilities \u0026 Helpers"],"sub_categories":["Utilities","🛠️ 其他实用工具与集成","🛠️ \u003ca name=\"other-tools-and-integrations\"\u003e\u003c/a\u003eOther Tools and Integrations","🛠️ \u003ca name=\"other-tools-and-integrations\"\u003e\u003c/a\u003eその他のツールと統合","🛠️ Other Tools and Integrations","How to Submit","🛠️ \u003ca name=\"developer-tools\"\u003e\u003c/a\u003e開発ツール","Other Tools and Integrations"],"readme":"[![MseeP.ai Security Assessment Badge](https://mseep.net/pr/andybrandt-mcp-simple-timeserver-badge.png)](https://mseep.ai/app/andybrandt-mcp-simple-timeserver)\n\n# MCP Simple Timeserver\n[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/andybrandt/mcp-simple-timeserver)](https://archestra.ai/mcp-catalog/andybrandt__mcp-simple-timeserver)\n[![smithery badge](https://smithery.ai/badge/mcp-simple-timeserver)](https://smithery.ai/server/mcp-simple-timeserver)\n\n*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.*\n\nThis server provides two tools:\n - `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. \n - `get_utc` provides current UTC time obtained from an [NTP time server](https://en.wikipedia.org/wiki/Network_Time_Protocol). \n\n## Installation\n\n### Installing via Smithery\n\nTo install Simple Timeserver for Claude Desktop automatically via [Smithery](https://smithery.ai/server/mcp-simple-timeserver):\n\n```bash\nnpx -y @smithery/cli install mcp-simple-timeserver --client claude\n```\n\n### Manual Installation\nFirst install the module using:\n\n```bash\npip install mcp-simple-timeserver\n\n```\n\nThen configure in MCP client - the [Claude desktop app](https://claude.ai/download).\n\nUnder Mac OS this will look like this:\n\n```json\n\"mcpServers\": {\n  \"simple-timeserver\": {\n    \"command\": \"python\",\n    \"args\": [\"-m\", \"mcp_simple_timeserver\"]\n  }\n}\n```\n\nUnder Windows you have to check the path to your Python executable using `where python` in the `cmd` (Windows command line). \n\nTypical configuration would look like this:\n\n```json\n\"mcpServers\": {\n  \"simple-timeserver\": {\n    \"command\": \"C:\\\\Users\\\\YOUR_USERNAME\\\\AppData\\\\Local\\\\Programs\\\\Python\\\\Python311\\\\python.exe\",\n    \"args\": [\"-m\", \"mcp_simple_timeserver\"]\n  }\n}\n```\n\n## Web Server Variant\n\nThis 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).\n\nOr 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*).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandybrandt%2Fmcp-simple-timeserver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandybrandt%2Fmcp-simple-timeserver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandybrandt%2Fmcp-simple-timeserver/lists"}