currentdt-mcp
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., "@currentdt-mcpWhat's the current date and time in ISO format?"
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.
@strix-ai/currentdt-mcp
Real-time date and time access for AI assistants via Model Context Protocol (MCP)
Built for AI, Built with AI - Enhancing AI assistant capabilities through intelligent tooling
π Table of Contents
Related MCP server: DateTime MCP Server
Overview
@strix-ai/currentdt-mcp is an MCP server that provides AI assistants with instant access to current date and time information. Essential for generating timestamped code, migration files, and dated documentation.
Quick Start
# Install globally
npm install -g @strix-ai/currentdt-mcp
# Configure your MCP client (see integration guides below)
# Start using current datetime in AI conversations!User Flow
βββββββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββββββ
β User Asks for βββββΆβ AI Assistant βββββΆβ get_current_ β
β Timestamped Code β β β β datetime Tool β
βββββββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββββββ
β Timestamped Output ββββββ Current Time ββββββ CurrentDT MCP β
β Generated β β Returned β β Server β
βββββββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββ βββββββββββββββββββββββ
β Formatted ββββββ Local/Remote β
β DateTime β β Time Provider β
βββββββββββββββββββ βββββββββββββββββββββββCore Features
Zero Configuration - Works immediately after installation
Multiple Formats - ISO 8601, custom formats (YYYY-MM-DD, MM/DD/YYYY, etc.)
Provider System - Local system clock with remote fallback
MCP Compatible - Cursor, Claude Desktop, VS Code, Windsurf
TypeScript Native - Full type safety and IntelliSense
MCP Client Integration
Cursor IDE
npm install -g @strix-ai/currentdt-mcpAdd to ~/.cursor/mcp_servers.json:
{
"mcpServers": {
"currentdt": {
"command": "npx",
"args": ["@strix-ai/currentdt-mcp"]
}
}
}Claude Desktop
npm install -g @strix-ai/currentdt-mcpAdd to ~/claude_desktop_config.json:
{
"mcpServers": {
"currentdt": {
"command": "currentdt-mcp",
"args": []
}
}
}VS Code (with MCP Extension)
Install package and configure via MCP extension settings or add to VS Code settings:
{
"mcp.servers": [
{
"name": "currentdt",
"command": "currentdt-mcp"
}
]
}Windsurf
Same configuration as Cursor IDE - add to Windsurf MCP settings file.
Real-World Usage Examples
1. SQL Migration Files
User: "Create a migration to add user preferences table"
Result: Migration file named 2025-08-26-143000_add_user_preferences.sql with current timestamp
MCP Tool Call Example:
{
"tool": "get_current_datetime",
"arguments": {
"format": "YYYY-MM-DD-HHmmss",
"provider": "local"
}
}2. Timestamped Logging
User: "Generate a logger that includes timestamps"
Result: Logger implementation with current ISO datetime format
3. Dated Documentation
User: "Update the changelog with today's date"
Result: Changelog entry with current date: ## [1.1.7] - 2025-08-26
API Reference
Tool: get_current_datetime
Parameters:
format(optional):"iso"(default) or custom format like"YYYY-MM-DD HH:mm:ss"provider(optional):"local"(default) or"remote"
Returns: Formatted datetime string
Example:
{
"tool": "get_current_datetime",
"arguments": {
"format": "YYYY-MM-DD HH:mm:ss",
"provider": "local"
}
}Configuration (Optional)
Create currentdt-config.json for custom settings:
{
"defaultFormat": "iso",
"defaultProvider": "local",
"providers": {
"local": {
"name": "local",
"enabled": true,
"priority": 1
},
"remote": {
"name": "remote",
"enabled": false,
"priority": 2,
"config": {
"url": "https://worldtimeapi.org/api/timezone/UTC",
"timeout": 5000
}
}
},
"customFormats": {
"filename": "YYYY-MM-DD-HHmmss",
"simple": "MM/DD/YYYY"
},
"cache": {
"enabled": true,
"ttl": 1000
}
}Common Format Patterns
"iso"β2025-08-26T14:30:00.000Z"YYYY-MM-DD"β2025-08-26"YYYY-MM-DD HH:mm:ss"β2025-08-26 14:30:00"MM/DD/YYYY"β08/23/2025"YYYY-MM-DD-HHmmss"β2025-08-26-143000
Troubleshooting
Tool Not Available
# Verify installation
npm list -g @strix-ai/currentdt-mcp
# Test server directly
npx @strix-ai/currentdt-mcp --testDebug Mode
export CURRENTDT_DEBUG=true
npx @strix-ai/currentdt-mcpDevelopment
git clone https://github.com/biswajitpanday/CurrentDT-mcp.git
cd currentdt-mcp
npm install
npm run devnpm Scripts
npm run build- Build TypeScriptnpm test- Run all testsnpm run lint- ESLint checknpm run format- Prettier format
Documentation
Detailed documentation available in /docs:
TaskList.md - Development progress tracking
Architecture.md - System architecture and design
SRS.md - Software requirements specification
PRD.md - Product requirements document
Contributing
Fork the repository
Create a feature branch:
git checkout -b feature/amazing-featureCommit changes:
git commit -m 'Add amazing feature'Push to branch:
git push origin feature/amazing-featureOpen a Pull Request
Support & Links
Issues: GitHub Issues
Documentation: GitHub Repository
npm Package: @strix-ai/currentdt-mcp
Author: Biswajit Panday - AI-Assisted Development Enthusiast
Contributor: Abdullah Saleh Robin robinabdullah@yahoo.com
License
MIT License - see LICENSE file for details.
Made with β€οΈ by Biswajit Panday
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityDmaintenanceA Model Context Protocol server for time manipulation tasks, enabling AI models to get the current date/time and calculate duration between timestamps.72MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that provides tools to get the current date and time in various formats, supporting different timezones and custom formatting options.1381MIT
- AlicenseCqualityDmaintenanceProvides 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.217MIT
- AlicenseAqualityNot gradedmaintenanceProvides 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
Related MCP Connectors
A real clock for AI agents: current time, timezone conversion, and DST facts from the IANA tzdb.
A time server that keeps your AI honest about time. Real clock + drift guard, zero dependencies.
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/biswajitpanday/CurrentDT-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server