MCP Wait Timer Server
MCP 待機タイマーサーバー
シンプルなwaitツールを提供する MCP (Model Context Protocol) サーバー。
デモビデオを見る: https://www.youtube.com/watch?v=TaF_j9wrWVw
概要
このサーバーは、MCP クライアント (Cline、Claude Desktop、Cursor など) によって実行されるワークフローに意図的な一時停止を導入するように設計された単一のツールwaitを公開します。
Related MCP server: mcp-sleep
問題解決
MCPクライアントとそれを駆動するAIモデルは、多くの場合、順次動作します。コマンドまたはアクション(Webリクエスト、ファイル操作、API呼び出しなど)を実行した後、モデルはすぐに次のステップに進む場合があります。ただし、一部のアクションは、その効果を完全に完了させるまでに追加の時間を必要とします(例:バックグラウンドプロセスの終了、JavaScript実行後のWebページの完全なレンダリング、ファイルシステムへの伝播)。
モデルは、これらの非同期効果が完了した時点を常に確実に検出できるとは限らないため、処理が早まって進み、後続のステップでエラーが発生したり、誤った仮定が生じたりする可能性があります。
解決策: waitツール
このサーバーは、ユーザーまたはAIプロンプトがクライアントに対し、処理を続行する前に指定時間だけ一時停止するよう明示的に指示できるwaitツールを提供します。これにより、時間依存の操作が完了するのに十分な時間を確保できます。
ツール: wait
**説明:**指定された秒数の間、実行を一時停止します。
入力パラメータ:
duration_seconds(数値、必須): 待機時間(秒数)。正の数値でなければなりません。
ユースケース
**Web オートメーション:**ページナビゲーションまたは要素のインタラクションの後に、動的コンテンツの読み込みまたはスクリプトの実行が完了することを確認します。
Example Prompt: "Navigate to example.com, fill the login form, click submit, then wait for 5 seconds and capture a screenshot."**コマンドライン操作:**シェル コマンドによって開始されるバックグラウンド タスク、ファイル書き込み、またはサービスの起動に時間をかけます。
Example Prompt: "Run 'npm run build', wait for 15 seconds, then check if the 'dist/app.js' file exists."**API インタラクション:**レート制限を処理するために、または非同期ジョブの完了を待機するために、API 呼び出し間に遅延を追加します。
**ワークフローのデバッグ:**複雑なタスク中の特定のポイントでシステムの状態を観察するために一時停止を挿入します。
インストールとセットアップ
このサーバーには Node.js (バージョン 16 以上) が必要です。
ステップ1: MCPクライアントを構成する
クライアントの設定ファイル内の"mcpServers": {}オブジェクト内に、以下のJSONブロックを追加してください。クライアントとオペレーティングシステムに対応するファイルを選択してください。
構成ブロック:
"wait-timer": {
"command": "npx",
"args": ["mcp-wait-timer"],
"env": {},
"disabled": false,
"autoApprove": []
}クライアント構成ファイルの場所:
クロードデスクトップ:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json(パスは多少異なる場合があります)
VS Code 拡張機能 (Cline / 「Claude Code」):
macOS:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.jsonWindows:
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.jsonLinux:
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
カーソル:
グローバル:
~/.cursor/mcp.jsonプロジェクト固有: プロジェクト フォルダー内に
.cursor/mcp.jsonファイルを作成します。
ウィンドサーフィン:
~/.codeium/windsurf/mcp_config.json
その他のクライアント:
MCP設定ファイルの場所については、各クライアントのドキュメントを参照してください。上記の「設定ブロック」に示されているJSON構造は、通常問題なく動作するはずです。
ステップ2: クライアントを再起動する
設定ブロックを追加してファイルを保存したら、変更を有効にするためにMCPクライアントアプリケーションを完全に再起動してください。クライアントが初めてサーバーを起動すると、 npx mcp-wait-timerパッケージがキャッシュされていない場合は自動的にダウンロードします。
使用例
インストールして有効にしたら、MCP クライアントに次の指示を与えることができます。
"Please wait for 10 seconds before proceeding."クライアントの AI モデルはインテントを認識し、 duration_seconds: 10でwaitツールを呼び出す必要があります。
開発者
このツールは、人間の健康と寿命の限界を広げることに重点を置くグループである199 Longevityの取り組みの一環として開発されました。
バイオテクノロジー分野における当社の取り組みの詳細については、 199.bioをご覧ください。
プロジェクト貢献者: ボリス・ジョルジェビッチ
ライセンス
このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
- waitA
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol (MCP) server that provides a simple sleep/wait tool, useful for adding delays between operations such as waiting between API calls or testing eventually consistent systems.12821ISC
- AlicenseBqualityDmaintenanceTool that allows you to wait a certain time to continue the execution of an agent.11Apache 2.0
- AlicenseBqualityDmaintenanceA simple MCP server that provides waiting functionality to pause until other tasks finish, with progress reporting and support for CLI or HTTP server with SSE.1115MIT
- AlicenseNot gradedqualityDmaintenanceProvides a wait tool for AI agents to pause execution until a time duration elapses or a process terminates, useful for polling and waiting for builds/deployments.6MIT
Related MCP Connectors
Workflow diagnostics, capability routing, and x402 settlement for MCP-compatible agents.
Create, browse, remix, collaborate on, and run durable AI workflow nodes from MCP hosts.
The official MCP Server from Mia-Platform to interact with Mia-Platform Console
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/199-mcp/mcp-wait-timer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server