mdns_get_service_info
Retrieve detailed information about a discovered mDNS service including hostname, IP addresses, port, and TXT records. Specify service type and name to get complete service details.
Instructions
Get detailed information about a specific mDNS service.
This tool retrieves complete information about a discovered service including:
Hostname and IP addresses
Port number
TXT records (metadata)
Service type and name
Args: params (ServiceInfoInput): Validated input parameters containing: - service_type (str): Service type (e.g., '_http._tcp.local.') - service_name (str): Full service name from browse results - timeout (Optional[float]): Query timeout in seconds (default: 10.0) - response_format (ResponseFormat): Output format preference
Returns: str: Detailed service information or error message
Example: >>> mdns_get_service_info(ServiceInfoInput(service_type="_http._tcp", service_name="My Server._http._tcp.local.")) "# Service: My Server._http._tcp.local.\n\nType: _http._tcp.local.\nServer: myserver.local\nPort: 8080\nAddresses: 192.168.1.100"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |