list_lab_networks
Retrieve details of all networks configured in a specified lab, including types and connections, using the MCP server for EVE-NG network emulation.
Instructions
List all networks in a lab.
This tool retrieves information about all networks configured in the specified lab, including their types and connections.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ListNetworksArgs": {
"description": "Arguments for list_networks tool.",
"properties": {
"lab_path": {
"description": "Full path to the lab (e.g., /lab_name.unl)",
"title": "Lab Path",
"type": "string"
}
},
"required": [
"lab_path"
],
"title": "ListNetworksArgs",
"type": "object"
}
},
"properties": {
"arguments": {
"$ref": "#/$defs/ListNetworksArgs"
}
},
"required": [
"arguments"
],
"title": "list_lab_networksArguments",
"type": "object"
}