Webex · Capability

Webex Meetings — Summaries

Webex Meetings — Summaries. 3 operations. Lead operation: Get Summary For Compliance Officer. Self-contained Naftiko capability covering one Webex business surface.

Run with Naftiko WebexSummaries

What You Can Do

GET
Getsummaryforcomplianceofficer — Get Summary For Compliance Officer
/v1/admin/meetingsummaries
GET
Getsummarybymeetingid — Get Summary by Meeting ID
/v1/meetingsummaries
DELETE
Deletesummary — Delete a Summary
/v1/meetingsummaries/{summaryid}

MCP Tools

get-summary-compliance-officer

Get Summary For Compliance Officer

read-only idempotent
get-summary-meeting-id

Get Summary by Meeting ID

read-only idempotent
delete-summary

Delete a Summary

idempotent

Capability Spec

meeting-summaries.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Webex Meetings — Summaries
  description: 'Webex Meetings — Summaries. 3 operations. Lead operation: Get Summary For Compliance Officer. Self-contained
    Naftiko capability covering one Webex business surface.'
  tags:
  - Webex
  - Summaries
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEBEX_API_KEY: WEBEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: meeting-summaries
    baseUri: ''
    description: Webex Meetings — Summaries business capability. Self-contained, no shared references.
    resources:
    - name: admin-meetingSummaries
      path: /admin/meetingSummaries
      operations:
      - name: getsummaryforcomplianceofficer
        method: GET
        description: Get Summary For Compliance Officer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: meetingId
          in: query
          type: string
          description: Unique identifier for the [meeting instance](/docs/meetings#meeting-series-scheduled-meetings-and-meeting-instances)
            to which the summary belongs. Please note t
    - name: meetingSummaries
      path: /meetingSummaries
      operations:
      - name: getsummarybymeetingid
        method: GET
        description: Get Summary by Meeting ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: meetingId
          in: query
          type: string
          description: Unique identifier for the [meeting instance](/docs/meetings#meeting-series-scheduled-meetings-and-meeting-instances)
            to which the summary belongs. Please note t
    - name: meetingSummaries-summaryId
      path: /meetingSummaries/{summaryId}
      operations:
      - name: deletesummary
        method: DELETE
        description: Delete a Summary
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: summaryId
          in: path
          type: string
          description: Unique identifier for the meeting summary.
          required: true
    authentication:
      type: bearer
      token: '{{env.WEBEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: meeting-summaries-rest
    port: 8080
    description: REST adapter for Webex Meetings — Summaries. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/admin/meetingsummaries
      name: admin-meetingsummaries
      description: REST surface for admin-meetingSummaries.
      operations:
      - method: GET
        name: getsummaryforcomplianceofficer
        description: Get Summary For Compliance Officer
        call: meeting-summaries.getsummaryforcomplianceofficer
        with:
          meetingId: rest.meetingId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/meetingsummaries
      name: meetingsummaries
      description: REST surface for meetingSummaries.
      operations:
      - method: GET
        name: getsummarybymeetingid
        description: Get Summary by Meeting ID
        call: meeting-summaries.getsummarybymeetingid
        with:
          meetingId: rest.meetingId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/meetingsummaries/{summaryid}
      name: meetingsummaries-summaryid
      description: REST surface for meetingSummaries-summaryId.
      operations:
      - method: DELETE
        name: deletesummary
        description: Delete a Summary
        call: meeting-summaries.deletesummary
        with:
          summaryId: rest.summaryId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: meeting-summaries-mcp
    port: 9090
    transport: http
    description: MCP adapter for Webex Meetings — Summaries. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-summary-compliance-officer
      description: Get Summary For Compliance Officer
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: meeting-summaries.getsummaryforcomplianceofficer
      with:
        meetingId: tools.meetingId
      outputParameters:
      - type: object
        mapping: $.
    - name: get-summary-meeting-id
      description: Get Summary by Meeting ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: meeting-summaries.getsummarybymeetingid
      with:
        meetingId: tools.meetingId
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-summary
      description: Delete a Summary
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: meeting-summaries.deletesummary
      with:
        summaryId: tools.summaryId
      outputParameters:
      - type: object
        mapping: $.