mcp-timer-server
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., "@mcp-timer-serverwhat's the current time in New York?"
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.
mcp-timer-server
A Model Context Protocol (MCP) server that provides accurate system time to LLM applications via a simple tool call.
Features
Real-time data: Provides the current date and time from the host machine
Multi-timezone support: Query time in any supported IANA timezone
Zero dependencies at runtime: Uses only Node.js built-in Intl API
Stdio transport: Works with any MCP-compatible client
Related MCP server: Time MCP Server
Installation
Clone and install locally:
git clone https://github.com/scotty-phillips/mcp-timer-server.git
cd mcp-timer-server
npm installUsage with LM Studio
Open LM Studio and go to the Developer tab (MCP section)
Add a new MCP server configuration pointing to your local installation:
{
"mcpServers": {
"timer": {
"command": "node",
"args": ["C:\\Users\\scott\\system-time-mcp\\index.js"]
}
}
}Note: Update the path to match where you clone the repo. Use forward slashes or escape backslashes in Windows paths.
Available Tools
get_system_time
Returns the current accurate system date and time from the local workstation.
Input Parameters: None required.
Example Response:
The current time on this workstation is: Wednesday, June 13, 2026, 7:05 PM (Australian Eastern Summer Time)Note: For timezone-aware time with more IANA timezone options, use the enhanced version at
src/index.jswhich supports atimezoneparameter.
Usage with Other Clients
For other MCP-compatible clients, point the server configuration to your local node executable and the path to index.js.
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"timer": {
"command": "node",
"args": ["C:/path/to/system-time-mcp/src/index.js"]
}
}
}Cursor
Add to your Cursor MCP settings:
{
"mcpServers": {
"timer": {
"command": "node",
"args": ["C:/path/to/system-time-mcp/src/index.js"]
}
}
}Development
Running Locally
npm startRunning Tests
npm testHelp
The server runs via stdio and responds to tool calls from any MCP client.
Project Structure
mcp-timer-server/
├── src/
│ └── index.js # Enhanced version with timezone support
├── tests/
│ └── index.test.js # Basic test suite
├── .gitignore
├── LICENSE
├── README.md
└── package.jsonLicense
MIT - Copyright (c) 2026 Scott Phillips
Author
Scott Phillips
GitHub: scotty-phillips
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
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/scottyphillips/system-time-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server