wait-seconds
Pause execution for a specified number of seconds in MetaMask MCP workflows, enabling timed delays for blockchain interactions or process synchronization.
Instructions
Wait the given seconds.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
seconds | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"seconds": {
"type": "number"
}
},
"required": [
"seconds"
],
"type": "object"
}