Infoblox · Capability

Infoblox WAPI (Web API) — Grid

Infoblox WAPI (Web API) — Grid. 2 operations. Lead operation: Infoblox Get Grid information. Self-contained Naftiko capability covering one Infoblox business surface.

Run with Naftiko InfobloxGrid

What You Can Do

GET
Getgrid — Infoblox Get Grid information
/v1/grid
GET
Listmembers — Infoblox List Grid members
/v1/member

MCP Tools

infoblox-get-grid-information

Infoblox Get Grid information

read-only idempotent
infoblox-list-grid-members

Infoblox List Grid members

read-only idempotent

Capability Spec

wapi-grid.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Infoblox WAPI (Web API) — Grid
  description: 'Infoblox WAPI (Web API) — Grid. 2 operations. Lead operation: Infoblox Get Grid information. Self-contained
    Naftiko capability covering one Infoblox business surface.'
  tags:
  - Infoblox
  - Grid
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INFOBLOX_API_KEY: INFOBLOX_API_KEY
capability:
  consumes:
  - type: http
    namespace: wapi-grid
    baseUri: https://{grid-master}/wapi/v2.12
    description: Infoblox WAPI (Web API) — Grid business capability. Self-contained, no shared references.
    resources:
    - name: grid
      path: /grid
      operations:
      - name: getgrid
        method: GET
        description: Infoblox Get Grid information
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: member
      path: /member
      operations:
      - name: listmembers
        method: GET
        description: Infoblox List Grid members
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: host_name
          in: query
          type: string
          description: Filter by the member hostname.
    authentication:
      type: apikey
      key: ibapauth
      value: '{{env.INFOBLOX_API_KEY}}'
      placement: cookie
  exposes:
  - type: rest
    namespace: wapi-grid-rest
    port: 8080
    description: REST adapter for Infoblox WAPI (Web API) — Grid. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/grid
      name: grid
      description: REST surface for grid.
      operations:
      - method: GET
        name: getgrid
        description: Infoblox Get Grid information
        call: wapi-grid.getgrid
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/member
      name: member
      description: REST surface for member.
      operations:
      - method: GET
        name: listmembers
        description: Infoblox List Grid members
        call: wapi-grid.listmembers
        with:
          host_name: rest.host_name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: wapi-grid-mcp
    port: 9090
    transport: http
    description: MCP adapter for Infoblox WAPI (Web API) — Grid. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: infoblox-get-grid-information
      description: Infoblox Get Grid information
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: wapi-grid.getgrid
      outputParameters:
      - type: object
        mapping: $.
    - name: infoblox-list-grid-members
      description: Infoblox List Grid members
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: wapi-grid.listmembers
      with:
        host_name: tools.host_name
      outputParameters:
      - type: object
        mapping: $.