About Current Time UTC MCP Server
Current Time UTC MCP Server is an MCP server published by jairampatel in the Developer Tools category: time. It has been installed 0 times through Conduid.
Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx currenttimeutc-mcpThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Current Time UTC MCP Server
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
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.
README mirrored from the source repository 4 months ago. The original is authoritative.