get_current_time
Retrieve the current time and date to timestamp cryptocurrency transactions, schedule automated trading operations, and synchronize wallet activities across supported blockchain networks.
Instructions
Gets the current time and date
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- armor_crypto_mcp/armor_mcp.py:95-98 (handler)The handler function for the 'get_current_time' tool. It is decorated with @mcp.tool(), which registers it with the MCP server. The function returns the current UTC time formatted as a string in a dictionary.@mcp.tool() async def get_current_time() -> Dict: """Gets the current time and date""" return {"current_time": datetime.now(timezone.utc).strftime("%Y-%m-%d %H:%M:%S")}