P

currenttimeutc-mcp

Created Oct 19, 2025 by jairampatel

Language:

Python

Stars:

0

Forks:

0

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


## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Contributing

This repository is for MCP schema and documentation only. For backend implementation or service issues, please contact the service maintainers.
Last updated: Nov 11, 2025

More MCP servers built with Python

Stable Diffusion WebUI

Stable Diffusion web UI

By AUTOMATIC1111 160.1K
Transformers

🤗 Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training.

By huggingface 155.5K
PyTorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

By pytorch 96.8K