Juniper Networks · Capability

Juniper Networks Juniper Mist API — WLANs

Juniper Networks Juniper Mist API — WLANs. 5 operations. Lead operation: Juniper Networks List WLANs. Self-contained Naftiko capability covering one Juniper business surface.

Run with Naftiko JuniperWLANs

What You Can Do

GET
Listsitewlans — Juniper Networks List WLANs
/v1/sites/{site-id}/wlans
POST
Createsitewlan — Juniper Networks Create WLAN
/v1/sites/{site-id}/wlans
GET
Getsitewlan — Juniper Networks Get WLAN details
/v1/sites/{site-id}/wlans/{wlan-id}
PUT
Updatesitewlan — Juniper Networks Update WLAN
/v1/sites/{site-id}/wlans/{wlan-id}
DELETE
Deletesitewlan — Juniper Networks Delete WLAN
/v1/sites/{site-id}/wlans/{wlan-id}

MCP Tools

juniper-networks-list-wlans

Juniper Networks List WLANs

read-only idempotent
juniper-networks-create-wlan

Juniper Networks Create WLAN

juniper-networks-get-wlan-details

Juniper Networks Get WLAN details

read-only idempotent
juniper-networks-update-wlan

Juniper Networks Update WLAN

idempotent
juniper-networks-delete-wlan

Juniper Networks Delete WLAN

idempotent

Capability Spec

mist-wlans.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Juniper Networks Juniper Mist API — WLANs
  description: 'Juniper Networks Juniper Mist API — WLANs. 5 operations. Lead operation: Juniper Networks List WLANs. Self-contained
    Naftiko capability covering one Juniper business surface.'
  tags:
  - Juniper
  - WLANs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    JUNIPER_API_KEY: JUNIPER_API_KEY
capability:
  consumes:
  - type: http
    namespace: mist-wlans
    baseUri: https://api.mist.com/api/v1
    description: Juniper Networks Juniper Mist API — WLANs business capability. Self-contained, no shared references.
    resources:
    - name: sites-site_id-wlans
      path: /sites/{site_id}/wlans
      operations:
      - name: listsitewlans
        method: GET
        description: Juniper Networks List WLANs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createsitewlan
        method: POST
        description: Juniper Networks Create WLAN
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: sites-site_id-wlans-wlan_id
      path: /sites/{site_id}/wlans/{wlan_id}
      operations:
      - name: getsitewlan
        method: GET
        description: Juniper Networks Get WLAN details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatesitewlan
        method: PUT
        description: Juniper Networks Update WLAN
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletesitewlan
        method: DELETE
        description: Juniper Networks Delete WLAN
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.JUNIPER_API_KEY}}'
  exposes:
  - type: rest
    namespace: mist-wlans-rest
    port: 8080
    description: REST adapter for Juniper Networks Juniper Mist API — WLANs. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/sites/{site-id}/wlans
      name: sites-site-id-wlans
      description: REST surface for sites-site_id-wlans.
      operations:
      - method: GET
        name: listsitewlans
        description: Juniper Networks List WLANs
        call: mist-wlans.listsitewlans
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsitewlan
        description: Juniper Networks Create WLAN
        call: mist-wlans.createsitewlan
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sites/{site-id}/wlans/{wlan-id}
      name: sites-site-id-wlans-wlan-id
      description: REST surface for sites-site_id-wlans-wlan_id.
      operations:
      - method: GET
        name: getsitewlan
        description: Juniper Networks Get WLAN details
        call: mist-wlans.getsitewlan
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatesitewlan
        description: Juniper Networks Update WLAN
        call: mist-wlans.updatesitewlan
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletesitewlan
        description: Juniper Networks Delete WLAN
        call: mist-wlans.deletesitewlan
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: mist-wlans-mcp
    port: 9090
    transport: http
    description: MCP adapter for Juniper Networks Juniper Mist API — WLANs. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: juniper-networks-list-wlans
      description: Juniper Networks List WLANs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: mist-wlans.listsitewlans
      outputParameters:
      - type: object
        mapping: $.
    - name: juniper-networks-create-wlan
      description: Juniper Networks Create WLAN
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: mist-wlans.createsitewlan
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: juniper-networks-get-wlan-details
      description: Juniper Networks Get WLAN details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: mist-wlans.getsitewlan
      outputParameters:
      - type: object
        mapping: $.
    - name: juniper-networks-update-wlan
      description: Juniper Networks Update WLAN
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: mist-wlans.updatesitewlan
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: juniper-networks-delete-wlan
      description: Juniper Networks Delete WLAN
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: mist-wlans.deletesitewlan
      outputParameters:
      - type: object
        mapping: $.