get_ip_address_by_id
Retrieve a specific IP address from Nautobot by providing its unique ID. Facilitates network automation and infrastructure data queries through the MCP Nautobot Server integration.
Instructions
Retrieve a specific IP address by its Nautobot ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip_id | Yes | The Nautobot ID of the IP address |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"ip_id": {
"description": "The Nautobot ID of the IP address",
"type": "string"
}
},
"required": [
"ip_id"
],
"type": "object"
}