time-mcp
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-mcpWhat'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.
time-mcp
A remote MCP server that gives Claude ambient time awareness: current time, timezone conversion, calendar math, and elapsed-time — with tool descriptions written so the model treats time as context it must acquire (calling the tool before time-sensitive reasoning), not just something to answer "what time is it?".
Inspired by yokingma/time-mcp, rebuilt as a stateless Streamable-HTTP server so it works as a claude.ai custom connector (which requires a public HTTPS URL, not stdio).
Tools
Tool | Purpose |
| Full temporal context: ISO time, date, weekday, ISO week, unix, offset, DST |
| Convert a date-time between IANA timezones |
| Add/subtract years/months/weeks/days/hours/minutes (DST- and calendar-safe) |
| Exact elapsed time between two instants (end defaults to now) |
| Days in a month, leap-year aware |
Related MCP server: time-mcp
Deploy
npm install
npx wrangler deployRequires a Cloudflare account (npx wrangler login first). Free tier is plenty.
Connect
In claude.ai: Settings → Connectors → Add custom connector, URL:
https://time-mcp.<your-subdomain>.workers.dev/mcp?tz=Asia/KolkataThe ?tz= query param sets the default timezone for all tools (falls back to
DEFAULT_TIMEZONE in wrangler.jsonc, then UTC). Claude Code / Desktop can use
the same URL: claude mcp add --transport http time <url>.
To make usage closer to "every response" (best-effort — chat has no true pre-response hook), add this under Settings → General → Instructions for Claude in claude.ai:
Treat time as ambient context you must acquire, not knowledge you have. Call the time connector's current_time at the start of every response, regardless of topic, before reasoning about anything. Never state or assume a date, day of week, elapsed time, or how recent something is without having called it in this turn.Also check the per-chat tools menu: connectors have an enable toggle, and nothing fires in a chat where the connector is toggled off.
Testing the invocation rate
The failure mode to test for is not "can it tell the time" but "does it reach for the clock when time matters only implicitly". Run each prompt in a fresh chat (within one chat the model legitimately reuses an earlier result), then expand the tool-call chips in the response to see what it called:
"What day of the week is it?" — sanity check; must call
current_time."How old is the M3 MacBook Pro?" — age/recency with no time words.
"Draft a message proposing a call next Tuesday 3pm my time to someone in New York." — relative date + timezone; expect
current_time, ideallyconvert_timetoo."My notice period is 45 days and I want to be done by end of September — when's my last day to resign?" — deadline arithmetic; expect
time_math, not mental math."Is it too late to file taxes?" — pure implicit deadline.
Negative control: "Explain how Raft leader election works." — calling here is harmless but unnecessary; over-firing means the instructions are heavier than needed.
For ground truth independent of the UI, watch the server while testing:
npx wrangler tail time-mcpIf the hit rate is poor, the two levers in order of strength are the
Instructions text above and the tool descriptions in src/tools.ts
(the model re-reads tool descriptions every turn).
Local dev
npm run dev # wrangler dev on :8787
npm run check # typecheckSmoke test:
curl -s localhost:8787/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"current_time","arguments":{}}}'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
- Alicense-qualityDmaintenanceA Claude Model Configuration Protocol (MCP) server that provides real-time timezone-aware date and time information.Last updatedMIT
- AlicenseBqualityDmaintenanceTime MCP Server is a server implementation that provides time aware capabilities for large language models, supporting functions such as obtaining current time, relative time, and timestamp conversion.Last updated62Apache 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
- AlicenseAqualityDmaintenanceMCP server providing various date/time functions including current time, timezone conversion, and relative time calculations. Supports both local stdio and remote HTTP access via Cloudflare Workers.Last updated63702MIT
Related MCP Connectors
Timezone MCP — wraps WorldTimeAPI (free, no auth)
A real clock for AI agents: current time, timezone conversion, and DST facts from the IANA tzdb.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
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/kitallis/time-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server