Webex · Capability

Webex Device — Hot Desk

Webex Device — Hot Desk. 2 operations. Lead operation: List Sessions. Self-contained Naftiko capability covering one Webex business surface.

Run with Naftiko WebexHot Desk

What You Can Do

GET
Listsessions — List Sessions
/v1/hotdesk/sessions
DELETE
Deletesession — Delete Session
/v1/hotdesk/sessions/{sessionid}

MCP Tools

list-sessions

List Sessions

read-only idempotent
delete-session

Delete Session

idempotent

Capability Spec

device-hot-desk.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Webex Device — Hot Desk
  description: 'Webex Device — Hot Desk. 2 operations. Lead operation: List Sessions. Self-contained Naftiko capability covering
    one Webex business surface.'
  tags:
  - Webex
  - Hot Desk
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEBEX_API_KEY: WEBEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: device-hot-desk
    baseUri: ''
    description: Webex Device — Hot Desk business capability. Self-contained, no shared references.
    resources:
    - name: hotdesk-sessions
      path: /hotdesk/sessions
      operations:
      - name: listsessions
        method: GET
        description: List Sessions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: query
          type: string
          description: List sessions in this organization. Only admin users of another organization (such as partners) may
            use this parameter.
        - name: personId
          in: query
          type: string
          description: List sessions for this person.
        - name: workspaceId
          in: query
          type: string
          description: List sessions for this workspace.
    - name: hotdesk-sessions-sessionId
      path: /hotdesk/sessions/{sessionId}
      operations:
      - name: deletesession
        method: DELETE
        description: Delete Session
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sessionId
          in: path
          type: string
          description: The unique identifier for the hot desk session.
          required: true
    authentication:
      type: bearer
      token: '{{env.WEBEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: device-hot-desk-rest
    port: 8080
    description: REST adapter for Webex Device — Hot Desk. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/hotdesk/sessions
      name: hotdesk-sessions
      description: REST surface for hotdesk-sessions.
      operations:
      - method: GET
        name: listsessions
        description: List Sessions
        call: device-hot-desk.listsessions
        with:
          orgId: rest.orgId
          personId: rest.personId
          workspaceId: rest.workspaceId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/hotdesk/sessions/{sessionid}
      name: hotdesk-sessions-sessionid
      description: REST surface for hotdesk-sessions-sessionId.
      operations:
      - method: DELETE
        name: deletesession
        description: Delete Session
        call: device-hot-desk.deletesession
        with:
          sessionId: rest.sessionId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: device-hot-desk-mcp
    port: 9090
    transport: http
    description: MCP adapter for Webex Device — Hot Desk. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-sessions
      description: List Sessions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: device-hot-desk.listsessions
      with:
        orgId: tools.orgId
        personId: tools.personId
        workspaceId: tools.workspaceId
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-session
      description: Delete Session
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: device-hot-desk.deletesession
      with:
        sessionId: tools.sessionId
      outputParameters:
      - type: object
        mapping: $.