F5 Load Balancer · Capability

F5 Load Balancer F5 BIG-IP iControl REST API — Pools

F5 Load Balancer F5 BIG-IP iControl REST API — Pools. 5 operations. Lead operation: F5 Load Balancer List all pools. Self-contained Naftiko capability covering one F5 Load Balancer business surface.

Run with Naftiko F5 Load BalancerPools

What You Can Do

GET
Listpools — F5 Load Balancer List all pools
/v1/ltm/pool
POST
Createpool — F5 Load Balancer Create a pool
/v1/ltm/pool
GET
Getpool — F5 Load Balancer Get a specific pool
/v1/ltm/pool/{poolname}
PUT
Updatepool — F5 Load Balancer Update a pool
/v1/ltm/pool/{poolname}
DELETE
Deletepool — F5 Load Balancer Delete a pool
/v1/ltm/pool/{poolname}

MCP Tools

f5-load-balancer-list-all

F5 Load Balancer List all pools

read-only idempotent
f5-load-balancer-create-pool

F5 Load Balancer Create a pool

f5-load-balancer-get-specific

F5 Load Balancer Get a specific pool

read-only idempotent
f5-load-balancer-update-pool

F5 Load Balancer Update a pool

idempotent
f5-load-balancer-delete-pool

F5 Load Balancer Delete a pool

idempotent

Capability Spec

icontrol-rest-pools.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: F5 Load Balancer F5 BIG-IP iControl REST API — Pools
  description: 'F5 Load Balancer F5 BIG-IP iControl REST API — Pools. 5 operations. Lead operation: F5 Load Balancer List
    all pools. Self-contained Naftiko capability covering one F5 Load Balancer business surface.'
  tags:
  - F5 Load Balancer
  - Pools
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    F5_LOAD_BALANCER_API_KEY: F5_LOAD_BALANCER_API_KEY
capability:
  consumes:
  - type: http
    namespace: icontrol-rest-pools
    baseUri: https://{bigip_host}/mgmt/tm
    description: F5 Load Balancer F5 BIG-IP iControl REST API — Pools business capability. Self-contained, no shared references.
    resources:
    - name: ltm-pool
      path: /ltm/pool
      operations:
      - name: listpools
        method: GET
        description: F5 Load Balancer List all pools
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createpool
        method: POST
        description: F5 Load Balancer Create a pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ltm-pool-poolName
      path: /ltm/pool/{poolName}
      operations:
      - name: getpool
        method: GET
        description: F5 Load Balancer Get a specific pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatepool
        method: PUT
        description: F5 Load Balancer Update a pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletepool
        method: DELETE
        description: F5 Load Balancer Delete a pool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-F5-Auth-Token
      value: '{{env.F5_LOAD_BALANCER_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: icontrol-rest-pools-rest
    port: 8080
    description: REST adapter for F5 Load Balancer F5 BIG-IP iControl REST API — Pools. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/ltm/pool
      name: ltm-pool
      description: REST surface for ltm-pool.
      operations:
      - method: GET
        name: listpools
        description: F5 Load Balancer List all pools
        call: icontrol-rest-pools.listpools
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createpool
        description: F5 Load Balancer Create a pool
        call: icontrol-rest-pools.createpool
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ltm/pool/{poolname}
      name: ltm-pool-poolname
      description: REST surface for ltm-pool-poolName.
      operations:
      - method: GET
        name: getpool
        description: F5 Load Balancer Get a specific pool
        call: icontrol-rest-pools.getpool
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatepool
        description: F5 Load Balancer Update a pool
        call: icontrol-rest-pools.updatepool
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletepool
        description: F5 Load Balancer Delete a pool
        call: icontrol-rest-pools.deletepool
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: icontrol-rest-pools-mcp
    port: 9090
    transport: http
    description: MCP adapter for F5 Load Balancer F5 BIG-IP iControl REST API — Pools. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: f5-load-balancer-list-all
      description: F5 Load Balancer List all pools
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: icontrol-rest-pools.listpools
      outputParameters:
      - type: object
        mapping: $.
    - name: f5-load-balancer-create-pool
      description: F5 Load Balancer Create a pool
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: icontrol-rest-pools.createpool
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: f5-load-balancer-get-specific
      description: F5 Load Balancer Get a specific pool
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: icontrol-rest-pools.getpool
      outputParameters:
      - type: object
        mapping: $.
    - name: f5-load-balancer-update-pool
      description: F5 Load Balancer Update a pool
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: icontrol-rest-pools.updatepool
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: f5-load-balancer-delete-pool
      description: F5 Load Balancer Delete a pool
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: icontrol-rest-pools.deletepool
      outputParameters:
      - type: object
        mapping: $.