maintenance_mode
Enable or disable specific tools for maintenance simulation on the example-mcp-server-stdio. Manage tool availability with a simple boolean input.
Instructions
Simulate enabling or disabling tools for maintenance (demo only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enable | Yes | Enable (true) or disable (false) the tool | |
toolName | Yes | Tool to simulate managing |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"enable": {
"description": "Enable (true) or disable (false) the tool",
"type": "boolean"
},
"toolName": {
"description": "Tool to simulate managing",
"enum": [
"calculate",
"batch_calculate",
"advanced_calculate"
],
"type": "string"
}
},
"required": [
"toolName",
"enable"
],
"type": "object"
}