Aruba · Capability

Aruba Central API — Access Points

Aruba Central API — Access Points. 2 operations. Lead operation: List All Access Points. Self-contained Naftiko capability covering one Aruba business surface.

Run with Naftiko ArubaAccess Points

What You Can Do

GET
Getaccesspoints — List All Access Points
/v1/monitoring/v2/aps
GET
Getaccesspointbyserial — Get Access Point Details
/v1/monitoring/v2/aps/{serial}

MCP Tools

list-all-access-points

List All Access Points

read-only idempotent
get-access-point-details

Get Access Point Details

read-only idempotent

Capability Spec

central-access-points.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Aruba Central API — Access Points
  description: 'Aruba Central API — Access Points. 2 operations. Lead operation: List All Access Points. Self-contained Naftiko
    capability covering one Aruba business surface.'
  tags:
  - Aruba
  - Access Points
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ARUBA_API_KEY: ARUBA_API_KEY
capability:
  consumes:
  - type: http
    namespace: central-access-points
    baseUri: https://apigw-prod2.central.arubanetworks.com
    description: Aruba Central API — Access Points business capability. Self-contained, no shared references.
    resources:
    - name: monitoring-v2-aps
      path: /monitoring/v2/aps
      operations:
      - name: getaccesspoints
        method: GET
        description: List All Access Points
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: group
          in: query
          type: string
          description: Filter by group name.
        - name: site
          in: query
          type: string
          description: Filter by site name.
        - name: status
          in: query
          type: string
          description: Filter by access point status.
        - name: label
          in: query
          type: string
          description: Filter by label name.
        - name: model
          in: query
          type: string
          description: Filter by AP model.
        - name: fields
          in: query
          type: string
          description: Comma-separated list of fields to return. Use to request only specific attributes in the response.
        - name: calculate_total
          in: query
          type: boolean
          description: Whether to calculate and return the total number of APs.
        - name: swarm_id
          in: query
          type: string
          description: Filter by Swarm/cluster identifier.
    - name: monitoring-v2-aps-serial
      path: /monitoring/v2/aps/{serial}
      operations:
      - name: getaccesspointbyserial
        method: GET
        description: Get Access Point Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: serial
          in: path
          type: string
          description: The serial number of the access point.
          required: true
    authentication:
      type: bearer
      token: '{{env.ARUBA_API_KEY}}'
  exposes:
  - type: rest
    namespace: central-access-points-rest
    port: 8080
    description: REST adapter for Aruba Central API — Access Points. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/monitoring/v2/aps
      name: monitoring-v2-aps
      description: REST surface for monitoring-v2-aps.
      operations:
      - method: GET
        name: getaccesspoints
        description: List All Access Points
        call: central-access-points.getaccesspoints
        with:
          group: rest.group
          site: rest.site
          status: rest.status
          label: rest.label
          model: rest.model
          fields: rest.fields
          calculate_total: rest.calculate_total
          swarm_id: rest.swarm_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/monitoring/v2/aps/{serial}
      name: monitoring-v2-aps-serial
      description: REST surface for monitoring-v2-aps-serial.
      operations:
      - method: GET
        name: getaccesspointbyserial
        description: Get Access Point Details
        call: central-access-points.getaccesspointbyserial
        with:
          serial: rest.serial
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: central-access-points-mcp
    port: 9090
    transport: http
    description: MCP adapter for Aruba Central API — Access Points. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-all-access-points
      description: List All Access Points
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: central-access-points.getaccesspoints
      with:
        group: tools.group
        site: tools.site
        status: tools.status
        label: tools.label
        model: tools.model
        fields: tools.fields
        calculate_total: tools.calculate_total
        swarm_id: tools.swarm_id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-access-point-details
      description: Get Access Point Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: central-access-points.getaccesspointbyserial
      with:
        serial: tools.serial
      outputParameters:
      - type: object
        mapping: $.