RingCentral · Capability

RingCentral API — SMS

RingCentral API — SMS. 2 operations. Lead operation: Send MMS. Self-contained Naftiko capability covering one Ringcentral business surface.

Run with Naftiko RingcentralSMS

What You Can Do

POST
Createmms — Send MMS
/v1/restapi/v1-0/account/{accountid}/extension/{extensionid}/mms
POST
Createsmsmessage — Send SMS
/v1/restapi/v1-0/account/{accountid}/extension/{extensionid}/sms

MCP Tools

send-mms

Send MMS

send-sms

Send SMS

Capability Spec

platform-sms.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RingCentral API — SMS
  description: 'RingCentral API — SMS. 2 operations. Lead operation: Send MMS. Self-contained Naftiko capability covering
    one Ringcentral business surface.'
  tags:
  - Ringcentral
  - SMS
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RINGCENTRAL_API_KEY: RINGCENTRAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-sms
    baseUri: https://platform.ringcentral.com
    description: RingCentral API — SMS business capability. Self-contained, no shared references.
    resources:
    - name: restapi-v1.0-account-accountId-extension-extensionId-mms
      path: /restapi/v1.0/account/{accountId}/extension/{extensionId}/mms
      operations:
      - name: createmms
        method: POST
        description: Send MMS
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: restapi-v1.0-account-accountId-extension-extensionId-sms
      path: /restapi/v1.0/account/{accountId}/extension/{extensionId}/sms
      operations:
      - name: createsmsmessage
        method: POST
        description: Send SMS
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.RINGCENTRAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-sms-rest
    port: 8080
    description: REST adapter for RingCentral API — SMS. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/restapi/v1-0/account/{accountid}/extension/{extensionid}/mms
      name: restapi-v1-0-account-accountid-extension-extensionid-mms
      description: REST surface for restapi-v1.0-account-accountId-extension-extensionId-mms.
      operations:
      - method: POST
        name: createmms
        description: Send MMS
        call: platform-sms.createmms
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/restapi/v1-0/account/{accountid}/extension/{extensionid}/sms
      name: restapi-v1-0-account-accountid-extension-extensionid-sms
      description: REST surface for restapi-v1.0-account-accountId-extension-extensionId-sms.
      operations:
      - method: POST
        name: createsmsmessage
        description: Send SMS
        call: platform-sms.createsmsmessage
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-sms-mcp
    port: 9090
    transport: http
    description: MCP adapter for RingCentral API — SMS. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: send-mms
      description: Send MMS
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-sms.createmms
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: send-sms
      description: Send SMS
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-sms.createsmsmessage
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.