auto_recover
Automates recovery of npm-dev-mcp by performing health checks, initiating recovery processes, and validating results. Configurable retries, force recovery, and server restart options included.
Instructions
MCPサーバーの自動復旧を実行(ヘルスチェック→復旧→再検証)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
forceRecover | No | 強制復旧モード(デフォルト: false) | |
maxRetries | No | 最大復旧試行回数(デフォルト: 3) | |
restartMcp | No | MCPサーバー自体の再起動を含むか(デフォルト: false) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"forceRecover": {
"default": false,
"description": "強制復旧モード(デフォルト: false)",
"type": "boolean"
},
"maxRetries": {
"default": 3,
"description": "最大復旧試行回数(デフォルト: 3)",
"maximum": 10,
"minimum": 1,
"type": "number"
},
"restartMcp": {
"default": false,
"description": "MCPサーバー自体の再起動を含むか(デフォルト: false)",
"type": "boolean"
}
},
"type": "object"
}