mcp-timer-server
The mcp-timer-server is a Model Context Protocol (MCP) server that provides accurate system time to LLM applications. It exposes a get_system_time tool with the following capabilities:
Get current system time: Retrieve the current date and time from the host machine with no required parameters.
Timezone support: Optionally specify an IANA timezone (e.g.,
America/New_York,Europe/London) to get the time in that region; defaults to the server's local timezone.Human-readable output: Returns formatted responses including the full date, time, and timezone name (e.g., Wednesday, June 13, 2026, 7:05 PM (Australian Eastern Summer Time)).
LLM client integration: Works with MCP-compatible clients such as LM Studio, Claude Desktop, and Cursor.
Lightweight: Zero runtime dependencies — relies only on Node.js's built-in
IntlAPI.
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: DateTime 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

Available Tools
1 toolget_system_timeA
Returns the current accurate system date and time. Optionally accept a 'timezone' parameter (IANA timezone like 'America/New_York') to display time in a specific timezone.
| Name | Required | Description | Default |
|---|---|---|---|
| timezone | No | IANA timezone identifier (e.g., 'America/New_York', 'Europe/London'). Defaults to the server's system timezone. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description bears full responsibility. It discloses read behavior (returns date/time) and optional timezone. No side effects or permissions needed, so transparency is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no wasted words. Purpose and optional parameter are front-loaded in the first sentence.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool without output schema, the description explains what is returned and the single optional parameter. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%. Description adds value by specifying IANA timezone format and default behavior, enhancing the schema's own parameter description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool returns current accurate system date and time, with optional timezone parameter. No sibling tools exist, so differentiation is not needed.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description explains optional timezone parameter usage but does not explicitly state when-not-to-use or alternatives. However, the tool is simple and usage is self-evident.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v1.0.0- First observed
get_system_time
TDQS
Only one tool exists, so there is no risk of confusion or overlap between tools.
With a single tool, there are no naming inconsistencies or conflicts to evaluate.
The server name implies timer functionality, yet only provides a system time lookup. A timer server should have tools for creating, managing, and deleting timers, not just reading time.
The tool set is severely incomplete for a server named 'mcp-timer-server', missing all expected timer operations (set, cancel, list).
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 Connectors
A real clock for AI agents: current time, timezone conversion, and DST facts from the IANA tzdb.
Current time, timezone conversion & date math for AI agents. On Cloudflare Workers.
Wall-clock awareness for LLM agents. Two tools: elapsed-time-between-turns + day rollover detection.
Deterministic time tools for AI agents: timezone conversion, business-day math, cron interpretation.
Related MCP Servers
- AlicenseBqualityDmaintenanceProvides time and timezone functionality for LLMs, enabling them to get current time information across different timezones and convert times between zones.2MIT
- AlicenseAqualityCmaintenanceProvides LLMs with current date and time information across any timezone, with configurable defaults and support for IANA timezone identifiers.1303Apache 2.0
- AlicenseBqualityDmaintenanceProvides current time information and timezone conversion capabilities using IANA timezone names with automatic system detection. It enables LLMs to fetch local or global times and convert specific timestamps between different regions.22MIT
- AlicenseNot gradedqualityDmaintenanceProvides current time information and timezone conversion capabilities using IANA timezone names and automatic system detection. It enables LLMs to fetch current times across different regions and convert specific times between timezones.MIT
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/scottyphillips/system-time-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server