list_nodes
Retrieve detailed information about all nodes in a specified EVE-NG lab, including status, configuration, and connectivity, using the MCP server interface.
Instructions
List all nodes in a lab.
This tool retrieves information about all nodes in the specified lab, including their status, configuration, and connectivity.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ListNodesArgs": {
"description": "Arguments for list_nodes tool.",
"properties": {
"lab_path": {
"description": "Full path to the lab (e.g., /lab_name.unl)",
"title": "Lab Path",
"type": "string"
}
},
"required": [
"lab_path"
],
"title": "ListNodesArgs",
"type": "object"
}
},
"properties": {
"arguments": {
"$ref": "#/$defs/ListNodesArgs"
}
},
"required": [
"arguments"
],
"title": "list_nodesArguments",
"type": "object"
}