drio
Open app

Wait MCP Server

Source

Test MCP Server for Waiting

Catalog onlyCatalog onlySTDIO

Overview

Wait MCP Server is a repository for implementing Model Context Protocol (MCP) servers that feature a waiting functionality, allowing the server to pause before responding to requests in both TypeScript and Python.

To use the Wait MCP Server, clone the repository from GitHub and choose either the TypeScript or Python implementation based on your preference. You can customize the wait time according to your requirements before deploying it in your application.

  • Implementation of waiting functionality for MCP servers - Support for both TypeScript and Python languages - Easily customizable pause duration before responses
  1. Testing server response times in development environments.
  2. Simulating delayed responses in client-server interactions.
  3. Learning or demonstrating the Model Context Protocol in practice.

Add to your AI client

Use these steps to connect Wait MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-wait-7shi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wait-7shi"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-wait-7shi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wait-7shi"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-wait-7shi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wait-7shi"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-wait-7shi": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wait-7shi"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-wait-7shi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wait-7shi"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-wait-7shi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wait-7shi"
      ]
    }
  }
}

FAQ

What languages are supported by the Wait MCP Server?

The server is implemented in both TypeScript and Python.

Where can I find documentation for the implementation?

Documentation can be found on the GitHub repository and is also detailed in a Japanese article on Qiita.

How can I customize the wait time?

You can modify the wait duration in the server's source code before deploying it.