
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
mcp-wait-server
Advanced tools
Simple Model Context Protocol server providing time-related tools for Claude Desktop and other MCP clients:
wait - Pauses execution for a specified number of seconds, useful when you need to wait for long-running operations to completeget_datetime - Returns the current date and time in ISO 8601 formatsrc/index.ts (source) and build/index.js (compiled)npm start or directly with node build/index.jsThe simplest approach is to use npx, which runs the package without installing it. Configure Claude Desktop as shown in the "Usage" section below.
If you prefer to install the package:
# Install globally
npm install -g mcp-wait-server
For development or customization:
# Clone repository
git clone https://github.com/Amico1285/mcp-wait-server.git
cd mcp-wait-server
# Install dependencies
npm install
# Build the project
npm run build
# You can run it directly
npm start
Create or edit your Claude Desktop configuration file:
~/.anthropic/config.json on macOS/Linux%APPDATA%\anthropic\config.json on WindowsRecommended Method: Using npx (No Installation Required)
This is the simplest approach that works across all environments without requiring global installation:
{
"mcpServers": {
"wait_server": {
"command": "npx",
"args": [
"mcp-wait-server@latest"
],
"env": {
"MCP_WAIT_MAX_DURATION_SECONDS": "210",
"MCP_WAIT_TOOL_DESCRIPTION": "Waits for a specified number of seconds. Use this to create a delay after starting a long-running operation (like a script or download via another tool), allowing it time to complete before you proceed or check its status."
}
}
}
}
If you installed globally:
{
"mcpServers": {
"wait_server": {
"command": "mcp-wait-server",
"env": {
"MCP_WAIT_MAX_DURATION_SECONDS": "210",
"MCP_WAIT_TOOL_DESCRIPTION": "Waits for a specified number of seconds. Use this to create a delay after starting a long-running operation (like a script or download via another tool), allowing it time to complete before you proceed or check its status."
}
}
}
}
If you installed from source:
{
"mcpServers": {
"wait_server": {
"command": "/path/to/your/mcp-wait-server/build/index.js",
"env": {
"MCP_WAIT_MAX_DURATION_SECONDS": "210",
"MCP_WAIT_TOOL_DESCRIPTION": "Waits for a specified number of seconds. Use this to create a delay after starting a long-running operation (like a script or download via another tool), allowing it time to complete before you proceed or check its status."
}
}
}
}
Restart Claude Desktop
The wait and get_datetime tools will now be available to Claude Desktop
MCP_WAIT_MAX_DURATION_SECONDS - Maximum duration for one wait call (default: 210 seconds)MCP_WAIT_TOOL_DESCRIPTION - Custom description for the wait toolWhen Claude is given the wait tool, it can use it to wait for a specified number of seconds. This is particularly useful in scenarios like:
The tool has a maximum single wait duration (default 210 seconds), but will automatically handle longer waits by instructing Claude to call it again with the remaining time.
The get_datetime tool provides the current date and time in ISO 8601 format. This is useful for:
npm installnpm run buildnpm startFAQs
MCP server that provides wait and get_datetime tools
We found that mcp-wait-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.