Skip to main content
Glama

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
NameRequiredDescriptionDefault
secondsYes

Implementation Reference

  • 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}
  • The @mcp.tool() decorator registers the wait_a_moment function as an MCP tool.
    @mcp.tool()

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/armorwallet/armor-crypto-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server