Time
Returns current time in any timezone, computes scheduling math, parses date strings. Boring but absurdly useful for any time-aware agent.
Delv Safety Grade: A+
Score 94/100 · assessed 2026-04-22
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)
CLEARPure 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
Install
uvx mcp-server-time
Review
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
Works with
Similar MCPs
- ElevenLabsOfficial ElevenLabs MCP server. Text-to-speech, voice cloning, transcription, and audio sound design from inside Claude Desktop, Cursor, Windsurf, and other MCP clients.
- Everything (reference)Anthropic's reference MCP that exercises every protocol feature. Required reading if you're building your own MCP.
- MarkItDownMicrosoft's MarkItDown as an MCP. Convert PDF, Office, audio, video, images, web to clean Markdown for LLM ingestion.
- Markdownifyzcaceres Markdownify MCP. Converts PDF, image, audio, DOCX/XLSX/PPTX, YouTube transcripts, and webpages into Markdown.