Get Current UTC Time and Convert Timezones
Hosted MCP service for UTC time and IANA timezone conversion, including bulk conversion, over a standardized schema-defined interface.
Maintainer of this project? Claim this page to edit the listing.
1.0.0Add to Favorites
Why it matters
Integrate accurate, low-latency UTC time and timezone conversion services into your AI applications. This asset provides a standardized MCP interface for efficient data retrieval and transformation.
Outcomes
What it gets done
Retrieve current UTC time with millisecond precision.
Convert UTC timestamps to any specified timezone.
Perform batch conversions for multiple timestamps simultaneously.
Access a list of available IANA timezone identifiers.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-current-time-utc-mcp-server | bash Capabilities
Tools your agent gets
Retrieve current UTC time with millisecond precision
Convert UTC time to any timezone using IANA identifiers
Transform multiple timestamps to different timezones in a single request
List all available IANA timezone identifiers
Overview
Current Time UTC MCP Server
This MCP service returns current UTC time and converts timestamps between IANA timezones, including bulk conversion, over a hosted, schema-defined endpoint. Use it whenever an AI needs an accurate current time or timezone conversion rather than relying on its own time sense. This repo is schema/docs only - the backend runs as a hosted service.
What it does
CurrentTimeUTC MCP Server provides accurate UTC time and timezone conversion as a hosted MCP service, giving AI applications a standardized way to fetch current time data and convert between timezones using IANA timezone identifiers. It offers millisecond-precision UTC time, single or bulk timestamp conversion in one request, and a timezone listing endpoint, all optimized for low latency.
When to use - and when NOT to
Use this when an AI assistant needs a reliable, standardized time source - getting the current UTC time, converting a timestamp from one IANA timezone to another, or converting many timestamps in a single bulk request - instead of relying on a model's own (often inaccurate) sense of the current time. This is a hosted service reached at https://a.currenttimeutc.com/mcp, so it depends on that endpoint's availability rather than running locally. Note that this specific repository contains only the MCP schema and documentation, not the backend implementation - for service issues or backend questions, you'd need to contact the service maintainers directly rather than debug from this repo's code.
Capabilities
- Get current UTC time:
GET https://a.currenttimeutc.com/mcp/time/utc - Convert time between timezones:
GET https://a.currenttimeutc.com/mcp/time/convert?from_tz=America/New_York&to_tz=Europe/London&time=2024-01-15:14:30:00 - List available IANA timezones:
GET https://a.currenttimeutc.com/mcp/time/zones - Bulk conversion of multiple timestamps in a single request
Current schema version is v1.0.0 (October 2024 initial release), covering basic UTC retrieval, single timezone conversion, timezone listing, and error handling/validation.
How to install
This is a hosted MCP service - point your MCP client at the base URL and schema:
- Base URL:
https://a.currenttimeutc.com/mcp - Schema URL:
https://a.currenttimeutc.com/mcp/schema - Documentation:
https://currenttimeutc.com/mcp
Example direct request:
curl -X GET https://a.currenttimeutc.com/mcp/time/utc -H "Content-Type: application/json" -d '{}'
Who it's for
Developers building AI applications that need accurate, standardized UTC time and timezone conversion - scheduling assistants, log correlation across timezones, or any workflow where the model's own time sense isn't reliable enough. Licensed MIT.
Source README
CurrentTimeUTC MCP Server
A Model Context Protocol (MCP) server that provides accurate UTC time and timezone conversion services with low latency and high reliability.
Overview
The CurrentTimeUTC MCP Server offers precise time services through a standardized MCP interface, enabling AI applications to access current time data and perform timezone conversions efficiently.
Service Information
- Base URL:
https://a.currenttimeutc.com/mcp - Schema URL:
https://a.currenttimeutc.com/mcp/schema - Documentation:
https://currenttimeutc.com/mcp
Features
- UTC Time: Get current UTC time with millisecond precision
- Timezone Conversions: Convert UTC time to any timezone using IANA timezone identifiers
- Low Latency: Optimized for fast response times
- Bulk Conversion: Convert multiple timestamps in a single request
- Standardized Interface: Full MCP compliance for seamless integration
Quick Start
Get Current UTC Time
curl -X GET https://a.currenttimeutc.com/mcp/time/utc \
-H "Content-Type: application/json" \
-d '{}'
Convert Time to Timezone
curl -X GET https://a.currenttimeutc.com/mcp/time/convert?from_tz=America/New_York&to_tz=Europe/London&time=2024-01-15:14:30:00 \
-H "Content-Type: application/json"
List Timezones
curl -X GET https://a.currenttimeutc.com/mcp/time/zones \
-H "Content-Type: application/json"
## Schema Versioning
- **v1.0.0** (Initial Release, October 2024)
- Basic UTC time retrieval
- Single timezone conversion
- List time zones
- Error handling and validation
## Repository Structure
This repository contains the MCP schema and documentation for the CurrentTimeUTC server. It does not include backend implementation code.
├── README.md # This file
├── LICENSE # MIT License
├── schema/
│ └── v1.json # MCP schema definition
├── examples/
│ ├── curl.md # cURL examples
│ ├── python.md # Python examples
│ └── js.md # JavaScript examples
└── .github/
└── workflows/
└── validate-schema.yml # Schema validation workflow
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.