stop_all_nodes
Gracefully shut down and preserve the state of all running nodes in a specified lab on the EVE-NG MCP Server.
Instructions
Stop all nodes in a lab.
This tool stops all running nodes in the specified lab. All nodes will be gracefully shut down and their states preserved.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"BulkNodeControlArgs": {
"description": "Arguments for bulk node operations.",
"properties": {
"lab_path": {
"description": "Full path to the lab (e.g., /lab_name.unl)",
"title": "Lab Path",
"type": "string"
}
},
"required": [
"lab_path"
],
"title": "BulkNodeControlArgs",
"type": "object"
}
},
"properties": {
"arguments": {
"$ref": "#/$defs/BulkNodeControlArgs"
}
},
"required": [
"arguments"
],
"title": "stop_all_nodesArguments",
"type": "object"
}