sleep
Pause operations for a specified duration in milliseconds. Use this tool to add delays between tasks, such as waiting between API calls or testing eventually consistent systems.
Instructions
Wait for a specified duration
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| milliseconds | Yes | Duration to wait in milliseconds | 
Input Schema (JSON Schema)
{
  "properties": {
    "milliseconds": {
      "description": "Duration to wait in milliseconds",
      "minimum": 0,
      "type": "number"
    }
  },
  "required": [
    "milliseconds"
  ],
  "type": "object"
}