mcp-timer-server

mcp-timer-server

Provides accurate system time to LLM applications with multi-timezone support via a simple tool call.

Category
Visit Server

README

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

Installation

Clone and install locally:

git clone https://github.com/scotty-phillips/mcp-timer-server.git
cd mcp-timer-server
npm install

Usage with LM Studio

  1. Open LM Studio and go to the Developer tab (MCP section)

  2. 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.js which supports a timezone parameter.

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 start

Running Tests

npm test

Help

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.json

License

MIT - Copyright (c) 2026 Scott Phillips

Author

Scott Phillips
GitHub: scotty-phillips

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured