Cisco Expressway · Capability

Cisco Expressway Configuration API — NTP

Cisco Expressway Configuration API — NTP. 4 operations. Lead operation: Cisco Expressway List all configured NTP servers. Self-contained Naftiko capability covering one Cisco Expressway business surface.

Run with Naftiko Cisco ExpresswayNTP

What You Can Do

GET
Listntpservers — Cisco Expressway List all configured NTP servers
/v1/v1/provisioning/common/time/ntpserver
POST
Createntpserver — Cisco Expressway Add a new NTP server
/v1/v1/provisioning/common/time/ntpserver
PUT
Updatentpserver — Cisco Expressway Modify an NTP server entry
/v1/v1/provisioning/common/time/ntpserver
DELETE
Deletentpserver — Cisco Expressway Delete an NTP server entry
/v1/v1/provisioning/common/time/ntpserver

MCP Tools

cisco-expressway-list-all-configured

Cisco Expressway List all configured NTP servers

read-only idempotent
cisco-expressway-add-new-ntp

Cisco Expressway Add a new NTP server

cisco-expressway-modify-ntp-server

Cisco Expressway Modify an NTP server entry

idempotent
cisco-expressway-delete-ntp-server

Cisco Expressway Delete an NTP server entry

idempotent

Capability Spec

configuration-ntp.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cisco Expressway Configuration API — NTP
  description: 'Cisco Expressway Configuration API — NTP. 4 operations. Lead operation: Cisco Expressway List all configured
    NTP servers. Self-contained Naftiko capability covering one Cisco Expressway business surface.'
  tags:
  - Cisco Expressway
  - NTP
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CISCO_EXPRESSWAY_API_KEY: CISCO_EXPRESSWAY_API_KEY
capability:
  consumes:
  - type: http
    namespace: configuration-ntp
    baseUri: https://{host}/api
    description: Cisco Expressway Configuration API — NTP business capability. Self-contained, no shared references.
    resources:
    - name: v1-provisioning-common-time-ntpserver
      path: /v1/provisioning/common/time/ntpserver
      operations:
      - name: listntpservers
        method: GET
        description: Cisco Expressway List all configured NTP servers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createntpserver
        method: POST
        description: Cisco Expressway Add a new NTP server
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updatentpserver
        method: PUT
        description: Cisco Expressway Modify an NTP server entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletentpserver
        method: DELETE
        description: Cisco Expressway Delete an NTP server entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.CISCO_EXPRESSWAY_USER}}'
      password: '{{env.CISCO_EXPRESSWAY_PASS}}'
  exposes:
  - type: rest
    namespace: configuration-ntp-rest
    port: 8080
    description: REST adapter for Cisco Expressway Configuration API — NTP. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/provisioning/common/time/ntpserver
      name: v1-provisioning-common-time-ntpserver
      description: REST surface for v1-provisioning-common-time-ntpserver.
      operations:
      - method: GET
        name: listntpservers
        description: Cisco Expressway List all configured NTP servers
        call: configuration-ntp.listntpservers
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createntpserver
        description: Cisco Expressway Add a new NTP server
        call: configuration-ntp.createntpserver
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatentpserver
        description: Cisco Expressway Modify an NTP server entry
        call: configuration-ntp.updatentpserver
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletentpserver
        description: Cisco Expressway Delete an NTP server entry
        call: configuration-ntp.deletentpserver
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: configuration-ntp-mcp
    port: 9090
    transport: http
    description: MCP adapter for Cisco Expressway Configuration API — NTP. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: cisco-expressway-list-all-configured
      description: Cisco Expressway List all configured NTP servers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-ntp.listntpservers
      outputParameters:
      - type: object
        mapping: $.
    - name: cisco-expressway-add-new-ntp
      description: Cisco Expressway Add a new NTP server
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: configuration-ntp.createntpserver
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: cisco-expressway-modify-ntp-server
      description: Cisco Expressway Modify an NTP server entry
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: configuration-ntp.updatentpserver
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: cisco-expressway-delete-ntp-server
      description: Cisco Expressway Delete an NTP server entry
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: configuration-ntp.deletentpserver
      outputParameters:
      - type: object
        mapping: $.