Loading connector details…
Loading connector details…
Choose a unique username to continue using AgentHotspot
by dandeliongold • Tools & CLI
A small MCP server that returns the current time in YYYY-MM-DD HH:mm:ss format and computes signed time differences via JSON-RPC, built for use with the Claude Desktop app.
The current system time in a consistent YYYY-MM-DD HH:mm:ss format to timestamp events or logs.
Calculate how far in the past or future a given timestamp is (signed difference) to schedule actions or display human-friendly timing.
A lightweight, local JSON-RPC time service that integrates with the Claude Desktop app on Windows and macOS.
Provides two JSON-RPC methods: getCurrentTime (returns the current time in ISO-style YYYY-MM-DD HH:mm:ss) and getTimeDifference (computes signed differences in minutes or seconds between an input timestamp and now). It is designed to be simple, cross-platform (Windows and macOS) and to integrate with Claude Desktop via an npm package. The server offers clear conventions for positive/negative differences, supports error handling, and is easy to install and run via npm.
Get current time in UTC ISO format. Returns a string in format YYYY-MM-DDTHH:mm:ss.sssZ. Example response: { "type": "text", "text": "2025-02-08T19:50:22.000Z" }
Calculate time difference between a given timestamp and current time. Returns positive values for future timestamps and negative for past timestamps. Response includes the difference in requested interval (minutes/seconds), input timestamp, and current time. Example calls: { "timestamp": "2025-02-08 20:20:22", "interval": "minutes" } or { "interval": "seconds", "timestamp": "2025-02-08 20:20:22" } Example response: { "difference": 30, "interval": "minutes", "inputTimestamp": "2025-02-08 20:20:22", "currentTime": "2025-02-08 19:50:22" }
Scores are informational only and provided “as is” without warranty. AgentHotspot assumes no liability for actions taken based on these ratings.