Cisco Webex · Capability

Cisco Webex Events API — Events

Cisco Webex Events API — Events. 2 operations. Lead operation: Cisco Webex List Events. Self-contained Naftiko capability covering one Cisco Webex business surface.

Run with Naftiko Cisco WebexEvents

What You Can Do

GET
Listevents — Cisco Webex List Events
/v1/events
GET
Geteventdetails — Cisco Webex Get Event Details
/v1/events/{eventid}

MCP Tools

cisco-webex-list-events

Cisco Webex List Events

read-only idempotent
cisco-webex-get-event-details

Cisco Webex Get Event Details

read-only idempotent

Capability Spec

events-events.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cisco Webex Events API — Events
  description: 'Cisco Webex Events API — Events. 2 operations. Lead operation: Cisco Webex List Events. Self-contained Naftiko
    capability covering one Cisco Webex business surface.'
  tags:
  - Cisco Webex
  - Events
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CISCO_WEBEX_API_KEY: CISCO_WEBEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: events-events
    baseUri: https://webexapis.com/v1
    description: Cisco Webex Events API — Events business capability. Self-contained, no shared references.
    resources:
    - name: events
      path: /events
      operations:
      - name: listevents
        method: GET
        description: Cisco Webex List Events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: resource
          in: query
          type: string
          description: Filter by resource type.
        - name: type
          in: query
          type: string
          description: Filter by event type.
        - name: actorId
          in: query
          type: string
          description: Filter by person ID who performed the action.
        - name: from
          in: query
          type: string
          description: List events after this date and time in ISO 8601 format.
        - name: to
          in: query
          type: string
          description: List events before this date and time in ISO 8601 format.
        - name: max
          in: query
          type: integer
          description: Maximum number of events to return (default 100, max 1000).
    - name: events-eventId
      path: /events/{eventId}
      operations:
      - name: geteventdetails
        method: GET
        description: Cisco Webex Get Event Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: eventId
          in: path
          type: string
          description: Unique identifier for the event.
          required: true
    authentication:
      type: bearer
      token: '{{env.CISCO_WEBEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: events-events-rest
    port: 8080
    description: REST adapter for Cisco Webex Events API — Events. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/events
      name: events
      description: REST surface for events.
      operations:
      - method: GET
        name: listevents
        description: Cisco Webex List Events
        call: events-events.listevents
        with:
          resource: rest.resource
          type: rest.type
          actorId: rest.actorId
          from: rest.from
          to: rest.to
          max: rest.max
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/events/{eventid}
      name: events-eventid
      description: REST surface for events-eventId.
      operations:
      - method: GET
        name: geteventdetails
        description: Cisco Webex Get Event Details
        call: events-events.geteventdetails
        with:
          eventId: rest.eventId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: events-events-mcp
    port: 9090
    transport: http
    description: MCP adapter for Cisco Webex Events API — Events. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: cisco-webex-list-events
      description: Cisco Webex List Events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: events-events.listevents
      with:
        resource: tools.resource
        type: tools.type
        actorId: tools.actorId
        from: tools.from
        to: tools.to
        max: tools.max
      outputParameters:
      - type: object
        mapping: $.
    - name: cisco-webex-get-event-details
      description: Cisco Webex Get Event Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: events-events.geteventdetails
      with:
        eventId: tools.eventId
      outputParameters:
      - type: object
        mapping: $.