RingCentral · Capability

RingCentral API — Text

RingCentral API — Text. 2 operations. Lead operation: Smart Punctuation. Self-contained Naftiko capability covering one Ringcentral business surface.

Run with Naftiko RingcentralText

What You Can Do

POST
Caipunctuate — Smart Punctuation
/v1/ai/text/v1/async/punctuate
POST
Caisummarize — Conversational Summarization
/v1/ai/text/v1/async/summarize

MCP Tools

smart-punctuation

Smart Punctuation

conversational-summarization

Conversational Summarization

Capability Spec

platform-text.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RingCentral API — Text
  description: 'RingCentral API — Text. 2 operations. Lead operation: Smart Punctuation. Self-contained Naftiko capability
    covering one Ringcentral business surface.'
  tags:
  - Ringcentral
  - Text
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RINGCENTRAL_API_KEY: RINGCENTRAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-text
    baseUri: https://platform.ringcentral.com
    description: RingCentral API — Text business capability. Self-contained, no shared references.
    resources:
    - name: ai-text-v1-async-punctuate
      path: /ai/text/v1/async/punctuate
      operations:
      - name: caipunctuate
        method: POST
        description: Smart Punctuation
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: ai-text-v1-async-summarize
      path: /ai/text/v1/async/summarize
      operations:
      - name: caisummarize
        method: POST
        description: Conversational Summarization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.RINGCENTRAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-text-rest
    port: 8080
    description: REST adapter for RingCentral API — Text. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/ai/text/v1/async/punctuate
      name: ai-text-v1-async-punctuate
      description: REST surface for ai-text-v1-async-punctuate.
      operations:
      - method: POST
        name: caipunctuate
        description: Smart Punctuation
        call: platform-text.caipunctuate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ai/text/v1/async/summarize
      name: ai-text-v1-async-summarize
      description: REST surface for ai-text-v1-async-summarize.
      operations:
      - method: POST
        name: caisummarize
        description: Conversational Summarization
        call: platform-text.caisummarize
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-text-mcp
    port: 9090
    transport: http
    description: MCP adapter for RingCentral API — Text. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: smart-punctuation
      description: Smart Punctuation
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-text.caipunctuate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: conversational-summarization
      description: Conversational Summarization
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-text.caisummarize
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.