Zoom · Capability

Zoom chat/ — Chat

Zoom chat/ — Chat. 2 operations. Lead operation: Chat. Self-contained Naftiko capability covering one Zoom business surface.

Run with Naftiko ZoomChat

What You Can Do

POST
Chatget — Get chat messages for a specified period.
/v1/chat/get
POST
Chatlist — Get chat history list for a specified time period.
/v1/chat/list

MCP Tools

get-chat-messages-specified-period

Get chat messages for a specified period.

read-only
get-chat-history-list-specified

Get chat history list for a specified time period.

read-only

Capability Spec

chat--chat.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Zoom chat/ — Chat
  description: 'Zoom chat/ — Chat. 2 operations. Lead operation: Chat. Self-contained Naftiko capability covering one Zoom
    business surface.'
  tags:
  - Zoom
  - Chat
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ZOOM_API_KEY: ZOOM_API_KEY
capability:
  consumes:
  - type: http
    namespace: chat--chat
    baseUri: https://api.zoom.us/v1
    description: Zoom chat/ — Chat business capability. Self-contained, no shared references.
    resources:
    - name: chat-get
      path: /chat/get
      operations:
      - name: chatget
        method: POST
        description: Get chat messages for a specified period.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: chat-list
      path: /chat/list
      operations:
      - name: chatlist
        method: POST
        description: Get chat history list for a specified time period.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: chat--chat-rest
    port: 8080
    description: REST adapter for Zoom chat/ — Chat. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/chat/get
      name: chat-get
      description: REST surface for chat-get.
      operations:
      - method: POST
        name: chatget
        description: Get chat messages for a specified period.
        call: chat--chat.chatget
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/chat/list
      name: chat-list
      description: REST surface for chat-list.
      operations:
      - method: POST
        name: chatlist
        description: Get chat history list for a specified time period.
        call: chat--chat.chatlist
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: chat--chat-mcp
    port: 9090
    transport: http
    description: MCP adapter for Zoom chat/ — Chat. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-chat-messages-specified-period
      description: Get chat messages for a specified period.
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: chat--chat.chatget
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-chat-history-list-specified
      description: Get chat history list for a specified time period.
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: chat--chat.chatlist
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.