get_network_info
Retrieve detailed network configuration such as IP addresses, adapters, and DNS settings via the Windows Command Line MCP Server. Optionally filter results by a specific interface for targeted insights.
Instructions
Retrieve network configuration information including IP addresses, adapters, and DNS settings. Can be filtered to a specific interface.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| networkInterface | No | Optional interface name to filter results | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "networkInterface": {
      "description": "Optional interface name to filter results",
      "type": "string"
    }
  },
  "type": "object"
}