Roblox Engine API · Capability

Roblox Open Cloud API — Groups

Roblox Open Cloud API — Groups. 2 operations. Lead operation: Get Group. Self-contained Naftiko capability covering one Roblox Engine Api business surface.

Run with Naftiko Roblox Engine ApiGroups

What You Can Do

GET
Getgroup — Get Group
/v1/cloud/v2/groups/{groupid}
GET
Listgroupmemberships — List Group Memberships
/v1/cloud/v2/groups/{groupid}/memberships

MCP Tools

get-group

Get Group

read-only idempotent
list-group-memberships

List Group Memberships

read-only idempotent

Capability Spec

roblox-open-cloud-groups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Roblox Open Cloud API — Groups
  description: 'Roblox Open Cloud API — Groups. 2 operations. Lead operation: Get Group. Self-contained Naftiko capability
    covering one Roblox Engine Api business surface.'
  tags:
  - Roblox Engine Api
  - Groups
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ROBLOX_ENGINE_API_API_KEY: ROBLOX_ENGINE_API_API_KEY
capability:
  consumes:
  - type: http
    namespace: roblox-open-cloud-groups
    baseUri: https://apis.roblox.com
    description: Roblox Open Cloud API — Groups business capability. Self-contained, no shared references.
    resources:
    - name: cloud-v2-groups-groupId
      path: /cloud/v2/groups/{groupId}
      operations:
      - name: getgroup
        method: GET
        description: Get Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: groupId
          in: path
          type: string
          description: The group ID
          required: true
    - name: cloud-v2-groups-groupId-memberships
      path: /cloud/v2/groups/{groupId}/memberships
      operations:
      - name: listgroupmemberships
        method: GET
        description: List Group Memberships
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: groupId
          in: path
          type: string
          required: true
        - name: maxPageSize
          in: query
          type: integer
        - name: pageToken
          in: query
          type: string
        - name: filter
          in: query
          type: string
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.ROBLOX_ENGINE_API_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: roblox-open-cloud-groups-rest
    port: 8080
    description: REST adapter for Roblox Open Cloud API — Groups. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/cloud/v2/groups/{groupid}
      name: cloud-v2-groups-groupid
      description: REST surface for cloud-v2-groups-groupId.
      operations:
      - method: GET
        name: getgroup
        description: Get Group
        call: roblox-open-cloud-groups.getgroup
        with:
          groupId: rest.groupId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/cloud/v2/groups/{groupid}/memberships
      name: cloud-v2-groups-groupid-memberships
      description: REST surface for cloud-v2-groups-groupId-memberships.
      operations:
      - method: GET
        name: listgroupmemberships
        description: List Group Memberships
        call: roblox-open-cloud-groups.listgroupmemberships
        with:
          groupId: rest.groupId
          maxPageSize: rest.maxPageSize
          pageToken: rest.pageToken
          filter: rest.filter
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: roblox-open-cloud-groups-mcp
    port: 9090
    transport: http
    description: MCP adapter for Roblox Open Cloud API — Groups. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-group
      description: Get Group
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: roblox-open-cloud-groups.getgroup
      with:
        groupId: tools.groupId
      outputParameters:
      - type: object
        mapping: $.
    - name: list-group-memberships
      description: List Group Memberships
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: roblox-open-cloud-groups.listgroupmemberships
      with:
        groupId: tools.groupId
        maxPageSize: tools.maxPageSize
        pageToken: tools.pageToken
        filter: tools.filter
      outputParameters:
      - type: object
        mapping: $.