Composio · Capability

Composio Platform API — Realtime

Composio Platform API — Realtime. 2 operations. Lead operation: Authenticate CLI Pusher channel access. Self-contained Naftiko capability covering one Composio business surface.

Run with Naftiko ComposioRealtime

What You Can Do

POST
Postclirealtimeauth — Authenticate CLI Pusher channel access
/v1/api/v3/cli/realtime/auth
GET
Getclirealtimecredentials — Get credentials for CLI realtime events
/v1/api/v3/cli/realtime/credentials

MCP Tools

authenticate-cli-pusher-channel-access

Authenticate CLI Pusher channel access

get-credentials-cli-realtime-events

Get credentials for CLI realtime events

read-only idempotent

Capability Spec

composio-realtime.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Composio Platform API — Realtime
  description: 'Composio Platform API — Realtime. 2 operations. Lead operation: Authenticate CLI Pusher channel access. Self-contained
    Naftiko capability covering one Composio business surface.'
  tags:
  - Composio
  - Realtime
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    COMPOSIO_API_KEY: COMPOSIO_API_KEY
capability:
  consumes:
  - type: http
    namespace: composio-realtime
    baseUri: https://backend.composio.dev
    description: Composio Platform API — Realtime business capability. Self-contained, no shared references.
    resources:
    - name: api-v3-cli-realtime-auth
      path: /api/v3/cli/realtime/auth
      operations:
      - name: postclirealtimeauth
        method: POST
        description: Authenticate CLI Pusher channel access
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: api-v3-cli-realtime-credentials
      path: /api/v3/cli/realtime/credentials
      operations:
      - name: getclirealtimecredentials
        method: GET
        description: Get credentials for CLI realtime events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.COMPOSIO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: composio-realtime-rest
    port: 8080
    description: REST adapter for Composio Platform API — Realtime. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v3/cli/realtime/auth
      name: api-v3-cli-realtime-auth
      description: REST surface for api-v3-cli-realtime-auth.
      operations:
      - method: POST
        name: postclirealtimeauth
        description: Authenticate CLI Pusher channel access
        call: composio-realtime.postclirealtimeauth
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v3/cli/realtime/credentials
      name: api-v3-cli-realtime-credentials
      description: REST surface for api-v3-cli-realtime-credentials.
      operations:
      - method: GET
        name: getclirealtimecredentials
        description: Get credentials for CLI realtime events
        call: composio-realtime.getclirealtimecredentials
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: composio-realtime-mcp
    port: 9090
    transport: http
    description: MCP adapter for Composio Platform API — Realtime. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: authenticate-cli-pusher-channel-access
      description: Authenticate CLI Pusher channel access
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: composio-realtime.postclirealtimeauth
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-credentials-cli-realtime-events
      description: Get credentials for CLI realtime events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: composio-realtime.getclirealtimecredentials
      outputParameters:
      - type: object
        mapping: $.