The MCP Wait Timer Server provides a simple "wait" tool that allows MCP clients (like Claude Desktop, Cursor, or Cline) to introduce deliberate pauses in workflows. This is particularly useful when working with operations that need time to complete their effects before proceeding to the next step.
The wait tool solves a common problem with AI-driven tools: they often proceed immediately to the next step without waiting for background processes, web page rendering, or file operations to fully complete. By introducing deliberate pauses, you can ensure time-dependent operations have sufficient time to finish before continuing.
The server requires Node.js (version 16 or higher).
"mcpServers": {}
object:"wait-timer": {
"command": "npx",
"args": ["mcp-wait-timer"],
"env": {},
"disabled": false,
"autoApprove": []
}
Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
VS Code Extension (Cline / "Claude Code"):
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
Cursor:
~/.cursor/mcp.json
.cursor/mcp.json
within your project folderWindsurf:
~/.codeium/windsurf/mcp_config.json
After adding the configuration:
npx
will automatically download the mcp-wait-timer
packageOnce installed, you can simply instruct your MCP client to wait in natural language. For example:
Please wait for 10 seconds before proceeding.
The AI model should recognize this intent and call the wait
tool with the appropriate duration parameter.
duration_seconds
(required) - A positive number specifying how long to pause in secondsFor a visual demonstration of the wait timer in action, watch the demo video: https://www.youtube.com/watch?v=TaF_j9wrWVw
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.