Google Chat · Capability

Google Chat API — Reactions

Google Chat API — Reactions. 2 operations. Lead operation: Google Chat List reactions. Self-contained Naftiko capability covering one Google Chat business surface.

Run with Naftiko Google ChatReactions

What You Can Do

GET
Listreactions — Google Chat List reactions
/v1/v1/{parent}/reactions
POST
Createreaction — Google Chat Create reaction
/v1/v1/{parent}/reactions

MCP Tools

google-chat-list-reactions

Google Chat List reactions

read-only idempotent
google-chat-create-reaction

Google Chat Create reaction

Capability Spec

openapi-reactions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Google Chat API — Reactions
  description: 'Google Chat API — Reactions. 2 operations. Lead operation: Google Chat List reactions. Self-contained Naftiko
    capability covering one Google Chat business surface.'
  tags:
  - Google Chat
  - Reactions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GOOGLE_CHAT_API_KEY: GOOGLE_CHAT_API_KEY
capability:
  consumes:
  - type: http
    namespace: openapi-reactions
    baseUri: https://chat.googleapis.com
    description: Google Chat API — Reactions business capability. Self-contained, no shared references.
    resources:
    - name: v1-parent-reactions
      path: /v1/{parent}/reactions
      operations:
      - name: listreactions
        method: GET
        description: Google Chat List reactions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: parent
          in: path
          type: string
          description: 'Format: spaces/{space}/messages/{message}'
          required: true
      - name: createreaction
        method: POST
        description: Google Chat Create reaction
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: parent
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
  exposes:
  - type: rest
    namespace: openapi-reactions-rest
    port: 8080
    description: REST adapter for Google Chat API — Reactions. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v1/{parent}/reactions
      name: v1-parent-reactions
      description: REST surface for v1-parent-reactions.
      operations:
      - method: GET
        name: listreactions
        description: Google Chat List reactions
        call: openapi-reactions.listreactions
        with:
          parent: rest.parent
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createreaction
        description: Google Chat Create reaction
        call: openapi-reactions.createreaction
        with:
          parent: rest.parent
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: openapi-reactions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Google Chat API — Reactions. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: google-chat-list-reactions
      description: Google Chat List reactions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: openapi-reactions.listreactions
      with:
        parent: tools.parent
      outputParameters:
      - type: object
        mapping: $.
    - name: google-chat-create-reaction
      description: Google Chat Create reaction
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: openapi-reactions.createreaction
      with:
        parent: tools.parent
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.