wait_a_moment
Pauses execution for a specified duration, up to 10 seconds, to synchronize processes or manage timing in blockchain operations within the Armor Crypto MCP environment.
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 decorated with @mcp.tool() that implements the wait_a_moment tool. It pauses execution for the given number of seconds using asyncio.sleep and returns a confirmation dictionary.@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()