Time MCP 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., "@Time MCP Serverwhat's the current time in London?"
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-time-worker
A Cloudflare Workers-based MCP (Model Context Protocol) server that provides timezone-aware time information.
Features
Returns current date and time in any IANA timezone
Runs on Cloudflare's global edge network
Implements the Model Context Protocol for AI agent integration
Configurable default timezone via environment variables
ISO 8601-compatible time format with UTC offset
Related MCP server: MCP Node Time
Prerequisites
Node.js 18 or later
Cloudflare account (for deployment)
Wrangler CLI (installed via npm)
Installation
npm installDevelopment
Start the local development server:
npm run devThe MCP server will be available locally for testing with MCP clients.
Deployment
Deploy to Cloudflare Workers:
npm run deployCustom Timezone Configuration
Override the default timezone during deployment:
wrangler deploy --var DEFAULT_TIMEZONE:America/New_YorkOr set it in the Cloudflare dashboard under Workers > Settings > Environment Variables.
Usage
This MCP server exposes a single tool that can be called by any MCP client:
Tool: get_time
Returns the current date and time in a specified timezone.
Parameters:
timezone(optional): IANA timezone identifier (e.g., "Asia/Tokyo", "America/New_York", "Europe/London")If not provided, uses the
DEFAULT_TIMEZONEenvironment variableFinal fallback: "Asia/Tokyo"
Response Format:
YYYY-MM-DDTHH:MM:SS±HH:MMExample: 2025-11-27T15:30:45+09:00
Example MCP Client Configuration
Add to your MCP client configuration (e.g., Claude Desktop):
{
"mcpServers": {
"time": {
"url": "https://your-worker.your-subdomain.workers.dev"
}
}
}Configuration
wrangler.toml
The default timezone is configured in wrangler.toml:
[vars]
DEFAULT_TIMEZONE = "Asia/Tokyo"Modify this value to change the default timezone for your deployment.
Technical Details
Runtime: Cloudflare Workers (Edge)
Protocol: Model Context Protocol (MCP)
Timezone Library: Native
Intl.DateTimeFormatAPIValidation: Zod schema validation
CORS: Enabled with wildcard origin (
*)
License
MIT License - see LICENSE file for details
This server cannot be installed
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 Servers
- Flicense-qualityDmaintenanceCloudflare Worker that deploys an MCP server providing a single tool to return a user's timezone based on their IP address.Last updated
- AlicenseAqualityDmaintenanceA 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.Last updated44MIT
- AlicenseAqualityDmaintenanceAn MCP server that provides real-time date, time and time zone information for AI assistants.Last updated42Apache 2.0
- Flicense-qualityDmaintenanceA hosted MCP server providing current time, date, and timezone conversion tools specifically designed for Claude Code remote sessions. It enables users to fetch localized time data and convert times between IANA timezones through a centralized API.Last updated
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/kiyo-e/time-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server