wait_a_moment
Introduce controlled delays in cryptocurrency operations to manage timing requirements, handle rate limits, or coordinate sequential actions within automated trading workflows.
Instructions
Wait for some short amount of time, no more than 10 seconds
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| seconds | Yes |
Implementation Reference
- armor_crypto_mcp/armor_mcp.py:88-92 (handler)The handler function for the 'wait_a_moment' tool. It takes a 'seconds' parameter (float), sleeps for that duration using asyncio.sleep, and returns a dict confirming the wait time. Registered as an MCP tool via the @mcp.tool() decorator.@mcp.tool() async def wait_a_moment(seconds:float): """Wait for some short amount of time, no more than 10 seconds""" await asyncio.sleep(seconds) return {"waited": seconds}
- armor_crypto_mcp/armor_mcp.py:88-88 (registration)The @mcp.tool() decorator registers the wait_a_moment function as an MCP tool.@mcp.tool()