@dandeliongold/mcp-time
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@dandeliongold/mcp-timeWhat's the current time?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@dandeliongold/mcp-time
An MCP server for getting current time in ISO format (YYYY-MM-DD HH:mm:ss) using JavaScript Date. This server works with the Claude desktop app on both Windows and macOS.
Components
Tools
getCurrentTimeReturns the current time in ISO format
No input parameters required
Returns:
{ "time": "2024-02-08 11:04:33", "success": true }
Example JSON-RPC request:
{ "jsonrpc": "2.0", "id": 1, "method": "getCurrentTime" }Example JSON-RPC response:
{ "jsonrpc": "2.0", "id": 1, "result": { "time": "2024-02-08 11:04:33", "success": true } }getTimeDifferenceCalculates the time difference between a given timestamp and the current time
Parameters:
timestamp: ISO format timestamp (YYYY-MM-DD HH:mm:ss)interval: 'minutes' (default) or 'seconds'
Returns a signed difference value following this convention:
Positive values (+) indicate future timestamps ("in X minutes/seconds")
Negative values (-) indicate past timestamps ("X minutes/seconds ago")
Zero (0) indicates same timestamp
Example JSON-RPC request:
{ "jsonrpc": "2.0", "id": 1, "method": "getTimeDifference", "params": { "timestamp": "2024-02-08 12:30:00", "interval": "minutes" } }Example JSON-RPC responses:
// For a past timestamp (30 minutes ago) { "jsonrpc": "2.0", "id": 1, "result": { "difference": -30, "interval": "minutes", "inputTimestamp": "2024-02-08 12:30:00", "currentTime": "2024-02-08 13:00:00" } } // For a future timestamp (in 45 minutes) { "jsonrpc": "2.0", "id": 1, "result": { "difference": 45, "interval": "minutes", "inputTimestamp": "2024-02-08 13:45:00", "currentTime": "2024-02-08 13:00:00" } }
Related MCP server: Date MCP Server
Features
Get current time in YYYY-MM-DD HH:mm:ss format
Calculate time differences between timestamps and current time
Intuitive positive/negative values for future/past times
Support for both minutes and seconds intervals
Cross-platform support for Windows and macOS
Simple JSON-RPC interface
Consistent ISO-style date formatting
Error handling with detailed error messages
Installation
npm install @dandeliongold/mcp-timeUsage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"time": {
"command": "npx",
"args": [
"@dandeliongold/mcp-time"
]
}
}
}Development
Clone the repository
Install dependencies
npm installRun tests
npm testStart development server
npm run dev
License
MIT License - see LICENSE for details
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityCmaintenanceProvides current time and date information with timezone support and multiple formatting options. Enables AI assistants to answer time-related queries in different timezones with detailed temporal information.215MIT
- AlicenseAquality-maintenanceProvides AI assistants with real-time date, time, and timezone information, enabling them to access current temporal data, format dates, calculate day of week, and work with different timezones.47
- AlicenseAqualityCmaintenanceProvides time-related tools for LLM applications, enabling retrieval of current UTC time in ISO 8601 format and Unix timestamps.11,697MIT
- Alicense-qualityDmaintenanceProvides tools to get the current date and time in various formats (ISO, Unix timestamp, human-readable, custom) with configurable timezone support.MIT
Related MCP Connectors
A real clock for AI agents: current time, timezone conversion, and DST facts from the IANA tzdb.
Convert and compare dates and times across any timezone with flexible, locale-aware formatting. Ad…
Wall-clock awareness for LLM agents. Two tools: elapsed-time-between-turns + day rollover detection.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dandeliongold/mcp-time'
If you have feedback or need assistance with the MCP directory API, please join our Discord server