Webex · Capability

Webex Meetings — Site

Webex Meetings — Site. 2 operations. Lead operation: Get Meeting Common Settings Configuration. Self-contained Naftiko capability covering one Webex business surface.

Run with Naftiko WebexSite

What You Can Do

GET
Getmeetingcommonsettingsconfiguration — Get Meeting Common Settings Configuration
/v1/admin/meeting/config/commonsettings
PATCH
Updatemeetingcommonsettingsconfiguration — Update Meeting Common Settings Configuration
/v1/admin/meeting/config/commonsettings

MCP Tools

get-meeting-common-settings-configuration

Get Meeting Common Settings Configuration

read-only idempotent
update-meeting-common-settings-configuration

Update Meeting Common Settings Configuration

idempotent

Capability Spec

meeting-site.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Webex Meetings — Site
  description: 'Webex Meetings — Site. 2 operations. Lead operation: Get Meeting Common Settings Configuration. Self-contained
    Naftiko capability covering one Webex business surface.'
  tags:
  - Webex
  - Site
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEBEX_API_KEY: WEBEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: meeting-site
    baseUri: ''
    description: Webex Meetings — Site business capability. Self-contained, no shared references.
    resources:
    - name: admin-meeting-config-commonSettings
      path: /admin/meeting/config/commonSettings
      operations:
      - name: getmeetingcommonsettingsconfiguration
        method: GET
        description: Get Meeting Common Settings Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: siteUrl
          in: query
          type: string
          description: URL of the Webex site which the API queries common settings of the meeting's configuration from. If
            not specified, the API will query from the site administrato
      - name: updatemeetingcommonsettingsconfiguration
        method: PATCH
        description: Update Meeting Common Settings Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.WEBEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: meeting-site-rest
    port: 8080
    description: REST adapter for Webex Meetings — Site. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/admin/meeting/config/commonsettings
      name: admin-meeting-config-commonsettings
      description: REST surface for admin-meeting-config-commonSettings.
      operations:
      - method: GET
        name: getmeetingcommonsettingsconfiguration
        description: Get Meeting Common Settings Configuration
        call: meeting-site.getmeetingcommonsettingsconfiguration
        with:
          siteUrl: rest.siteUrl
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatemeetingcommonsettingsconfiguration
        description: Update Meeting Common Settings Configuration
        call: meeting-site.updatemeetingcommonsettingsconfiguration
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: meeting-site-mcp
    port: 9090
    transport: http
    description: MCP adapter for Webex Meetings — Site. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-meeting-common-settings-configuration
      description: Get Meeting Common Settings Configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: meeting-site.getmeetingcommonsettingsconfiguration
      with:
        siteUrl: tools.siteUrl
      outputParameters:
      - type: object
        mapping: $.
    - name: update-meeting-common-settings-configuration
      description: Update Meeting Common Settings Configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: meeting-site.updatemeetingcommonsettingsconfiguration
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.