davidan90/time-node-mcp
MCP server for timezone-aware date and time operations
Platform-specific configuration:
{
"mcpServers": {
"time-node-mcp": {
"command": "npx",
"args": [
"-y",
"time-node-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A Model Context Protocol (MCP) server that provides timezone-aware date and time operations. This server addresses the common issue where AI assistants provide incorrect date information due to timezone confusion.
# Clone or download the project
cd time-node-mcp
# Install dependencies
npm install
# Build the TypeScript code
npm run buildAdd the following configuration to your Claude Desktop settings file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"time-node-mcp": {
"command": "node",
"args": ["/path/to/time-node-mcp/dist/index.js"]
}
}
}Replace /path/to/time-node-mcp/ with the actual path to your installation directory.
Get the current date and time in a specific timezone.
Parameters:
timezone (required): IANA timezone identifier (e.g., "America/New_York", "Europe/London")format (optional): Output format - "iso", "local", or "full" (default: "iso")Example:
{
"timezone": "America/New_York",
"format": "full"
}Convert time from one timezone to another.
Parameters:
sourceTimezone (required): Source IANA timezone identifiertargetTimezone (required): Target IANA timezone identifier time (required): TimeLoading reviews...