Labsco
automation-ai-labs logo

MCP-Wait

โ˜… 5

from automation-ai-labs

A simple server to pause execution and wait for other tasks to complete.

๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

MCP-Wait

smithery badge

A simple MCP server that provides waiting functionality to pause until other tasks finish.

Features

  • Wait for a specified number of seconds
  • Progress reporting during waiting
  • Simple to use via CLI or as an HTTP server with SSE

Integration with Claude Desktop/Cursor/Chatwise

To use with Claude Desktop, add the following to your configuration:

{
  "mcpServers": {
    "mcp-wait": {
      "command": "npx",
      "args": [
        "-y",
        "@automation-ai-labs/mcp-wait"
      ],
      "env": {
        "TRANSPORT_TYPE": "stdio"
      }
    }
  }
}

Wait Tool

The server provides a simple wait tool that accepts a seconds parameter:

  • seconds: The number of seconds to wait (0-30000)

Example:

{
  "seconds": 5
}

This will wait for 5 seconds and report progress during the wait.