connect_eveng_server
Establish a connection to the EVE-NG server using provided credentials to manage network topologies, labs, and configurations on the EVE-NG MCP Server.
Instructions
Connect to EVE-NG server and authenticate.
This tool establishes a connection to the EVE-NG server using the provided
credentials. The connection will be maintained for subsequent operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ConnectServerArgs": {
"description": "Arguments for connect_eveng_server tool.",
"properties": {
"host": {
"description": "EVE-NG server hostname or IP address",
"title": "Host",
"type": "string"
},
"password": {
"description": "Password for authentication",
"title": "Password",
"type": "string"
},
"port": {
"default": 80,
"description": "Server port (default: 80)",
"title": "Port",
"type": "integer"
},
"protocol": {
"default": "http",
"description": "Protocol (http/https, default: http)",
"title": "Protocol",
"type": "string"
},
"username": {
"description": "Username for authentication",
"title": "Username",
"type": "string"
}
},
"required": [
"host",
"username",
"password"
],
"title": "ConnectServerArgs",
"type": "object"
}
},
"properties": {
"arguments": {
"$ref": "#/$defs/ConnectServerArgs"
}
},
"required": [
"arguments"
],
"title": "connect_eveng_serverArguments",
"type": "object"
}