Delv
Official (Anthropic)Active· 12d4.6by Anthropic

Time

Returns current time in any timezone, computes scheduling math, parses date strings. Boring but absurdly useful for any time-aware agent.

A+
Safety & Trust

Delv Safety Grade: A+

Score 94/100 · assessed 2026-04-22

Maintainer95
Permissions100
Supply chain90
Transparency90
Incidents100

This is Anthropic's official time utility server, maintained in their primary MCP servers monorepo. It provides three read-only tools for timezone queries, date arithmetic, and timestamp parsing. The attack surface is minimal: no filesystem access, no network calls, no environment variables, no external dependencies beyond standard Python datetime libraries. The code is straightforward datetime manipulation with proper IANA timezone support. Distribution via uvx from PyPI follows standard Python packaging. Documentation is adequate though not exhaustive. The narrow scope (pure computation, no side effects) makes this one of the safest MCP servers available. The only minor concern is the monorepo structure means updates to any server trigger version bumps across all, but this is cosmetic rather than a security issue.

Lethal Trifecta (prompt-injection exposure)

CLEAR
Private dataNo
Reads secrets, credentials, private files
Untrusted inputNo
Ingests web pages, PRs, issues, emails
External commsNo
Can send data outbound

Pure function over system time. No axes present.

Green flags

  • Official Anthropic maintenance with active development
  • Zero external API calls or network access required
  • Pure computation with no filesystem or shell access
  • No environment variables or secrets needed
  • Standard PyPI distribution with uvx for easy verification

Red flags

  • Monorepo structure means version coupling with unrelated servers
  • Documentation could be more comprehensive for edge cases
Assessed by Delv Editorial using public metadata. Grades are advisory and update as the ecosystem changes. They do not replace your own review of permissions and code before granting an agent access to sensitive systems.

Install

uvx mcp-server-time

Review

This is the MCP equivalent of a good watch: unglamorous, essential, and you forget it's there until you need it. Time gives your agent three tools: current time in any timezone, date arithmetic ("three weeks from next Tuesday"), and parsing human date strings into ISO timestamps. I reach for this whenever I'm building agents that schedule things, log events, or need to reason about deadlines. The timezone support is proper IANA format, so "America/New_York" works as expected. The scheduling math is surprisingly capable: you can ask "what's the date 45 days after 2024-03-15" and get a clean ISO string back. The parser handles messy input like "next Friday at 3pm" or "two weeks from now" without drama. The workflow that sold me: I built a meeting scheduler that needed to propose times across London, New York, and Tokyo. Time let the agent compute "9am EST is what in JST?" without me writing timezone conversion logic or worrying about daylight saving. It just worked. Another use: logging agent runs with proper timestamps instead of the host machine's local time, which matters when you're debugging async workflows. Quirks are minimal. It's a pure utility, so there's no state, no config, no API keys. The tools are simple enough that Claude rarely misuses them. The only gotcha I've hit: if you ask for "tomorrow" without specifying a timezone, it assumes UTC, which can surprise you if you're working in a different zone. Not a bug, just something to remember. Who shouldn't bother: if your agent never touches dates, times, or scheduling, you don't need this. It's not solving a problem you don't have. But if you're building anything calendar-aware, or if you've ever written timezone conversion code by hand, install it. It's one of those tools that earns its place by being boring and reliable.
Verdict

Install this if your agent touches calendars, schedules, or timestamps. It's official Anthropic kit, works everywhere, and solves a genuinely annoying problem without fuss. Skip it only if you're certain your workflows are time-agnostic.

Good at

  • Zero configuration. No API keys, no environment variables, no setup friction.
  • Proper IANA timezone support means it handles daylight saving and edge cases correctly.
  • The date arithmetic tool saves you from writing calendar math by hand, which is always a mess.
  • Official Anthropic server, so it's maintained and works reliably across all major MCP hosts.
  • Simple enough that Claude rarely misinterprets the tools, even in complex scheduling workflows.

Watch out

  • Defaults to UTC when timezone isn't specified, which can surprise you if you're working in a different region.
  • No support for recurring events or cron-style scheduling, so you'll need another tool for that.
  • If you're already using a calendar API or scheduling service, this might overlap with functionality you already have.

Getting started

1. Run `uvx mcp-server-time` to install via pipx. 2. Add it to your MCP host config (Claude Desktop, Cursor, etc.) with the server command pointing to the installed binary. No environment variables needed. 3. Restart your host and verify by asking Claude "What time is it in Tokyo right now?" or "What's the date 30 days from today?" 4. Watch out for timezone assumptions: if you don't specify a zone, the tools default to UTC, which can catch you out if you're working in a different region. 5. Use the `get_current_time` tool for now, `add_time` for date arithmetic, and `parse_date` for converting human strings to ISO format.

Works with

Claude DesktopClaude CodeCursorWindsurfClineZed

Similar MCPs