W
Wait
Provides a wait tool for pausing execution until a time duration passes or a monitored process terminates.
Share:
About
Provides a wait tool for pausing execution until a time duration passes or a monitored process terminates.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Wait.
- What is the primary function of the Wait MCP server?
- The Wait MCP server allows you to pause the execution of a program or script for a specified duration or until a monitored process completes. This is useful for orchestrating workflows that require delays or synchronization points.
- How can I install the Wait MCP with a client like Cline?
- Installation typically involves adding the Wait server's slug ('wait') to your Cline client configuration. Refer to your Cline client's documentation for specific instructions on adding new MCP servers.
- Does the Wait MCP server require any authentication or API keys?
- No, the Wait MCP server does not require an API key, OAuth, or any other credentials for use. Its authentication type is listed as 'none'.
- What types of waiting mechanisms does the Wait MCP provide?
- The Wait MCP provides functionality to pause execution based on either a time duration or the termination of a monitored process. Specific tool details are not listed, but these are the core capabilities.
- Are there any licensing costs associated with using the Wait MCP?
- Given that the repository is hosted on GitHub, it is typically open-source and free to use. However, always check the specific license in the repository for definitive terms and conditions.
Install Wait
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"wait": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wait"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"wait": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wait"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"wait": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wait"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.