A Model Context Protocol (MCP) server that provides accurate UTC time and timezone conversion services with low latency and high reliability.
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.
- Base URL:
https://a.currenttimeutc.com/mcp - Schema URL:
https://a.currenttimeutc.com/mcp/schema - Documentation:
https://currenttimeutc.com/mcp
- 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
curl -X GET https://a.currenttimeutc.com/mcp/time/utc \
-H "Content-Type: application/json" \
-d '{}'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"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.