mcp-infoblox
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| INFOBLOX_HOST | Yes | Infoblox server hostname or IP | |
| INFOBLOX_PASSWORD | Yes | WAPI password | |
| INFOBLOX_USERNAME | Yes | WAPI username | |
| INFOBLOX_WAPI_VERSION | No | WAPI version | 2.12 |
| INFOBLOX_ALLOW_SELF_SIGNED | No | Accept self-signed SSL certificates | true |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_dns_recordsB | Search for DNS records in Infoblox. Supports A, AAAA, CNAME, Host, PTR, MX, TXT, SRV records. Name search uses regex by default. |
| get_all_records_in_zoneC | List all DNS records in a specific zone. Returns all record types in the zone. |
| create_a_recordC | Create a DNS A record in Infoblox |
| create_aaaa_recordB | Create a DNS AAAA (IPv6) record in Infoblox |
| create_cname_recordB | Create a DNS CNAME record in Infoblox |
| create_host_recordA | Create a DNS Host record in Infoblox. Host records combine A and PTR records. Use 'func:nextavailableip:' as ipv4addr to auto-assign the next available IP. |
| create_ptr_recordB | Create a DNS PTR (reverse) record in Infoblox |
| create_mx_recordA | Create a DNS MX (mail exchange) record in Infoblox |
| create_txt_recordC | Create a DNS TXT record in Infoblox |
| create_srv_recordB | Create a DNS SRV record in Infoblox |
| update_dns_recordA | Update an existing DNS record by its object reference. Get the reference from a search first. |
| delete_dns_recordA | Delete a DNS record by its object reference. Get the reference from a search first. |
| get_networksB | Search and list networks in Infoblox IPAM. Returns network address, comment, view, and utilization info. |
| create_networkC | Create a new network in Infoblox IPAM |
| delete_networkA | Delete a network from Infoblox IPAM. Get the reference from get_networks first. |
| get_next_available_ipA | Get the next available IP address(es) from a network. Use get_networks first to find the network reference. |
| search_ip_addressesA | Search the IPv4 address space in Infoblox IPAM. Find used/unused IPs, check IP status, and see what objects use an IP. |
| get_network_detailsB | Get detailed information about a specific network including DHCP utilization statistics |
| get_fixed_addressesB | Search and list DHCP fixed addresses (reservations) in Infoblox |
| create_fixed_addressB | Create a DHCP fixed address (reservation) in Infoblox |
| delete_fixed_addressA | Delete a DHCP fixed address from Infoblox |
| get_dhcp_leasesB | Get active DHCP leases from Infoblox. Shows current IP assignments from DHCP. |
| get_dhcp_rangesB | List DHCP ranges (scopes) in Infoblox |
| create_dhcp_rangeB | Create a DHCP range (scope) in Infoblox |
| get_zonesA | Search and list DNS authoritative zones in Infoblox |
| create_zoneC | Create a DNS authoritative zone in Infoblox |
| delete_zoneA | Delete a DNS authoritative zone from Infoblox |
| get_grid_infoA | Get Infoblox grid information and configuration |
| get_membersA | List Infoblox grid members and their status |
| restart_servicesA | Restart DNS/DHCP services on the Infoblox grid. Required after configuration changes to take effect. |
| get_object_by_refA | Get any Infoblox object by its reference string. Useful for retrieving full details of an object. |
| global_searchB | Search across all Infoblox object types. Finds records, networks, and other objects matching a search string. |
| get_network_viewsC | List network views configured in Infoblox |
| get_dns_viewsB | List DNS views configured in Infoblox |
| get_extensible_attribute_definitionsB | List extensible attribute definitions configured in Infoblox. Extensible attributes are custom metadata fields. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 35 tools
Each tool targets a distinct Infoblox resource or action: different DNS record types (A, AAAA, CNAME, MX, PTR, SRV, TXT, Host), DHCP entities (fixed addresses, ranges, leases), IPAM networks, zones, and grid components. No two tools have overlapping purposes.
All tool names follow a consistent verb_noun pattern in snake_case, using verbs like create_, delete_, get_, search_, update_, restart_. There is no mixing of conventions or verbs.
With 35 tools, the server exceeds the 25+ threshold for 'too many'. While Infoblox is a complex platform, the number of tools is excessive and could be streamlined (e.g., combining create_record types with a parameter).
The tool surface covers creation, reading, and deletion for most resources, but lacks updates for networks, zones, DHCP ranges, and some other objects. This leaves notable gaps that agents may encounter.