Skip to main content
Glama

mcp-wait

A minimal MCP server that lets AI agents pause for a specified duration before resuming their workflow. Useful for polling patterns: check a condition, wait, retry.

Use cases

  • Wait for a PR to be approved before merging

  • Wait for a Slack response before continuing a conversation

  • Wait for a file to be created by an external process

  • Any retry/polling loop where the agent needs to back off

Related MCP server: mcp-connect

Tool: wait

Parameter

Type

Required

Description

seconds

number

yes

Seconds to wait (1–600, max 10 min)

reason

string

no

Why you're waiting (for logging)

Returns a confirmation message once the delay has elapsed.

Quick start with npx

No installation needed — just add to your MCP configuration:

{
  "mcpServers": {
    "mcp-wait": {
      "command": "npx",
      "args": ["-y", "@lzientek/mcp-wait"]
    }
  }
}

Install globally

npm install -g @lzientek/mcp-wait

Then use in your MCP config:

{
  "mcpServers": {
    "mcp-wait": {
      "command": "mcp-wait"
    }
  }
}

Example agent flow

1. Check PR status → not approved
2. Call wait(seconds: 180, reason: "waiting for PR approval")
3. (3 minutes pass)
4. Check PR status again → approved ✓
5. Proceed with merge

License

MIT

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Tools

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/lzientek/mcp-wait'

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