Infoblox · Capability

Infoblox WAPI (Web API) — Networks

Infoblox WAPI (Web API) — Networks. 3 operations. Lead operation: Infoblox List DHCP networks. Self-contained Naftiko capability covering one Infoblox business surface.

Run with Naftiko InfobloxNetworks

What You Can Do

GET
Listnetworks — Infoblox List DHCP networks
/v1/network
POST
Createnetwork — Infoblox Create a network
/v1/network
GET
Listnetworkviews — Infoblox List network views
/v1/networkview

MCP Tools

infoblox-list-dhcp-networks

Infoblox List DHCP networks

read-only idempotent
infoblox-create-network

Infoblox Create a network

infoblox-list-network-views

Infoblox List network views

read-only idempotent

Capability Spec

wapi-networks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Infoblox WAPI (Web API) — Networks
  description: 'Infoblox WAPI (Web API) — Networks. 3 operations. Lead operation: Infoblox List DHCP networks. Self-contained
    Naftiko capability covering one Infoblox business surface.'
  tags:
  - Infoblox
  - Networks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INFOBLOX_API_KEY: INFOBLOX_API_KEY
capability:
  consumes:
  - type: http
    namespace: wapi-networks
    baseUri: https://{grid-master}/wapi/v2.12
    description: Infoblox WAPI (Web API) — Networks business capability. Self-contained, no shared references.
    resources:
    - name: network
      path: /network
      operations:
      - name: listnetworks
        method: GET
        description: Infoblox List DHCP networks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: network
          in: query
          type: string
          description: Filter by the network address in CIDR notation (e.g. 10.0.0.0/24).
        - name: network_view
          in: query
          type: string
          description: Filter by the network view name.
        - name: comment
          in: query
          type: string
          description: Filter by the comment associated with the network.
      - name: createnetwork
        method: POST
        description: Infoblox Create a network
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: networkview
      path: /networkview
      operations:
      - name: listnetworkviews
        method: GET
        description: Infoblox List network views
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: query
          type: string
          description: Filter by the network view name.
    authentication:
      type: apikey
      key: ibapauth
      value: '{{env.INFOBLOX_API_KEY}}'
      placement: cookie
  exposes:
  - type: rest
    namespace: wapi-networks-rest
    port: 8080
    description: REST adapter for Infoblox WAPI (Web API) — Networks. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/network
      name: network
      description: REST surface for network.
      operations:
      - method: GET
        name: listnetworks
        description: Infoblox List DHCP networks
        call: wapi-networks.listnetworks
        with:
          network: rest.network
          network_view: rest.network_view
          comment: rest.comment
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createnetwork
        description: Infoblox Create a network
        call: wapi-networks.createnetwork
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/networkview
      name: networkview
      description: REST surface for networkview.
      operations:
      - method: GET
        name: listnetworkviews
        description: Infoblox List network views
        call: wapi-networks.listnetworkviews
        with:
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: wapi-networks-mcp
    port: 9090
    transport: http
    description: MCP adapter for Infoblox WAPI (Web API) — Networks. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: infoblox-list-dhcp-networks
      description: Infoblox List DHCP networks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: wapi-networks.listnetworks
      with:
        network: tools.network
        network_view: tools.network_view
        comment: tools.comment
      outputParameters:
      - type: object
        mapping: $.
    - name: infoblox-create-network
      description: Infoblox Create a network
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: wapi-networks.createnetwork
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: infoblox-list-network-views
      description: Infoblox List network views
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: wapi-networks.listnetworkviews
      with:
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.