Cisco Expressway · Capability

Cisco Expressway Configuration API — DNS

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

Run with Naftiko Cisco ExpresswayDNS

What You Can Do

GET
Listdnsservers — Cisco Expressway List all configured DNS servers
/v1/v1/provisioning/common/dns/dnsserver
POST
Creatednsserver — Cisco Expressway Add a new DNS server
/v1/v1/provisioning/common/dns/dnsserver
PUT
Updatednsserver — Cisco Expressway Modify a DNS server entry
/v1/v1/provisioning/common/dns/dnsserver
DELETE
Deletednsserver — Cisco Expressway Delete a DNS server entry
/v1/v1/provisioning/common/dns/dnsserver

MCP Tools

cisco-expressway-list-all-configured

Cisco Expressway List all configured DNS servers

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

Cisco Expressway Add a new DNS server

cisco-expressway-modify-dns-server

Cisco Expressway Modify a DNS server entry

idempotent
cisco-expressway-delete-dns-server

Cisco Expressway Delete a DNS server entry

idempotent

Capability Spec

configuration-dns.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cisco Expressway Configuration API — DNS
  description: 'Cisco Expressway Configuration API — DNS. 4 operations. Lead operation: Cisco Expressway List all configured
    DNS servers. Self-contained Naftiko capability covering one Cisco Expressway business surface.'
  tags:
  - Cisco Expressway
  - DNS
  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-dns
    baseUri: https://{host}/api
    description: Cisco Expressway Configuration API — DNS business capability. Self-contained, no shared references.
    resources:
    - name: v1-provisioning-common-dns-dnsserver
      path: /v1/provisioning/common/dns/dnsserver
      operations:
      - name: listdnsservers
        method: GET
        description: Cisco Expressway List all configured DNS servers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: creatednsserver
        method: POST
        description: Cisco Expressway Add a new DNS server
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updatednsserver
        method: PUT
        description: Cisco Expressway Modify a DNS server entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletednsserver
        method: DELETE
        description: Cisco Expressway Delete a DNS 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-dns-rest
    port: 8080
    description: REST adapter for Cisco Expressway Configuration API — DNS. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/provisioning/common/dns/dnsserver
      name: v1-provisioning-common-dns-dnsserver
      description: REST surface for v1-provisioning-common-dns-dnsserver.
      operations:
      - method: GET
        name: listdnsservers
        description: Cisco Expressway List all configured DNS servers
        call: configuration-dns.listdnsservers
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: creatednsserver
        description: Cisco Expressway Add a new DNS server
        call: configuration-dns.creatednsserver
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatednsserver
        description: Cisco Expressway Modify a DNS server entry
        call: configuration-dns.updatednsserver
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletednsserver
        description: Cisco Expressway Delete a DNS server entry
        call: configuration-dns.deletednsserver
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: configuration-dns-mcp
    port: 9090
    transport: http
    description: MCP adapter for Cisco Expressway Configuration API — DNS. 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 DNS servers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-dns.listdnsservers
      outputParameters:
      - type: object
        mapping: $.
    - name: cisco-expressway-add-new-dns
      description: Cisco Expressway Add a new DNS server
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: configuration-dns.creatednsserver
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: cisco-expressway-modify-dns-server
      description: Cisco Expressway Modify a DNS server entry
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: configuration-dns.updatednsserver
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: cisco-expressway-delete-dns-server
      description: Cisco Expressway Delete a DNS server entry
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: configuration-dns.deletednsserver
      outputParameters:
      - type: object
        mapping: $.