CommScope Holding · Capability

RUCKUS One API — Networks

RUCKUS One API — Networks. 2 operations. Lead operation: List Wi-Fi networks. Self-contained Naftiko capability covering one Commscope Holding business surface.

Run with Naftiko Commscope HoldingNetworks

What You Can Do

GET
Listnetworks — List Wi-Fi networks
/v1/api/tenant/{tenantid}/networks
POST
Createnetwork — Create a Wi-Fi network
/v1/api/tenant/{tenantid}/networks

MCP Tools

list-wi-fi-networks

List Wi-Fi networks

read-only idempotent
create-wi-fi-network

Create a Wi-Fi network

Capability Spec

ruckus-one-networks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RUCKUS One API — Networks
  description: 'RUCKUS One API — Networks. 2 operations. Lead operation: List Wi-Fi networks. Self-contained Naftiko capability
    covering one Commscope Holding business surface.'
  tags:
  - Commscope Holding
  - Networks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    COMMSCOPE_HOLDING_API_KEY: COMMSCOPE_HOLDING_API_KEY
capability:
  consumes:
  - type: http
    namespace: ruckus-one-networks
    baseUri: https://api.ruckus.cloud
    description: RUCKUS One API — Networks business capability. Self-contained, no shared references.
    resources:
    - name: api-tenant-tenantId-networks
      path: /api/tenant/{tenantId}/networks
      operations:
      - name: listnetworks
        method: GET
        description: List Wi-Fi networks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createnetwork
        method: POST
        description: Create a Wi-Fi network
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.COMMSCOPE_HOLDING_API_KEY}}'
  exposes:
  - type: rest
    namespace: ruckus-one-networks-rest
    port: 8080
    description: REST adapter for RUCKUS One API — Networks. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/api/tenant/{tenantid}/networks
      name: api-tenant-tenantid-networks
      description: REST surface for api-tenant-tenantId-networks.
      operations:
      - method: GET
        name: listnetworks
        description: List Wi-Fi networks
        call: ruckus-one-networks.listnetworks
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createnetwork
        description: Create a Wi-Fi network
        call: ruckus-one-networks.createnetwork
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ruckus-one-networks-mcp
    port: 9090
    transport: http
    description: MCP adapter for RUCKUS One API — Networks. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-wi-fi-networks
      description: List Wi-Fi networks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ruckus-one-networks.listnetworks
      outputParameters:
      - type: object
        mapping: $.
    - name: create-wi-fi-network
      description: Create a Wi-Fi network
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: ruckus-one-networks.createnetwork
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.