- Home
- MCP servers
- MCP-WTIT
MCP-WTIT
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"yorifuji-mcp-wtit": {
"command": "mcp-wtit",
"args": []
}
}
}You can run MCP-WTIT to obtain the current time in ISO8601 format with timezone support, including optional millisecond precision. It’s useful when you need a single, standardized time reference across clients and services that rely on accurate timestamps in a variety of time zones.
How to use
You connect to the MCP-WTIT server from your MCP client to obtain the current time. The server provides detailed time information in ISO8601, a UNIX timestamp, and the active timezone. You can configure your MCP client to reference the mcp-wtit server either as a globally installed command or as a local dependency. Use the server to synchronize timestamps across different tools and services, ensuring consistent time representations across your stack.
How to install
Prerequisites: you need Node.js 18.0.0 or higher and npm or yarn.
# Install globally
npm install -g mcp-wtit
# Run the server
mcp-wtit
Usage with a client configuration
Configure your MCP client to reference the MCP-WTIT server either as a global command or a local module. The following examples show how you can wire the server into your client configuration.
{
"mcpServers": {
"mcp-wtit": {
"command": "mcp-wtit"
}
}
}
From source and development flow
If you are developing locally, you typically clone the project, install dependencies, build, and then start the server.
# Clone the repository
git clone https://github.com/yorifuji/mcp-wtit.git
cd mcp-wtit
# Install dependencies
npm install
# Build the project
npm run build
# Run the server
npm start
Available tools
get_current_time
Returns the current time with ISO8601 representation, a timestamp, and the active timezone. Supports optional milliseconds and timezone selection.