Unity · Capability

Unity Remote Config API — Config

Unity Remote Config API — Config. 3 operations. Lead operation: List Remote Configs. Self-contained Naftiko capability covering one Unity business surface.

Run with Naftiko UnityConfig

What You Can Do

GET
Listremoteconfigs — List Remote Configs
/v1/v1/projects/{projectid}/environments/{environmentid}/configs
GET
Getremoteconfig — Get Remote Config
/v1/v1/projects/{projectid}/environments/{environmentid}/configs/{configid}
PUT
Updateremoteconfig — Update Remote Config
/v1/v1/projects/{projectid}/environments/{environmentid}/configs/{configid}

MCP Tools

list-remote-configs

List Remote Configs

read-only idempotent
get-remote-config

Get Remote Config

read-only idempotent
update-remote-config

Update Remote Config

idempotent

Capability Spec

remote-config-config.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Unity Remote Config API — Config
  description: 'Unity Remote Config API — Config. 3 operations. Lead operation: List Remote Configs. Self-contained Naftiko
    capability covering one Unity business surface.'
  tags:
  - Unity
  - Config
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    UNITY_API_KEY: UNITY_API_KEY
capability:
  consumes:
  - type: http
    namespace: remote-config-config
    baseUri: https://remote-config.services.api.unity.com
    description: Unity Remote Config API — Config business capability. Self-contained, no shared references.
    resources:
    - name: v1-projects-projectId-environments-environmentId-configs
      path: /v1/projects/{projectId}/environments/{environmentId}/configs
      operations:
      - name: listremoteconfigs
        method: GET
        description: List Remote Configs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: projectId
          in: path
          type: string
          required: true
        - name: environmentId
          in: path
          type: string
          required: true
    - name: v1-projects-projectId-environments-environmentId-configs-configId
      path: /v1/projects/{projectId}/environments/{environmentId}/configs/{configId}
      operations:
      - name: getremoteconfig
        method: GET
        description: Get Remote Config
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: projectId
          in: path
          type: string
          required: true
        - name: environmentId
          in: path
          type: string
          required: true
        - name: configId
          in: path
          type: string
          required: true
      - name: updateremoteconfig
        method: PUT
        description: Update Remote Config
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: projectId
          in: path
          type: string
          required: true
        - name: environmentId
          in: path
          type: string
          required: true
        - name: configId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.UNITY_API_KEY}}'
  exposes:
  - type: rest
    namespace: remote-config-config-rest
    port: 8080
    description: REST adapter for Unity Remote Config API — Config. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/projects/{projectid}/environments/{environmentid}/configs
      name: v1-projects-projectid-environments-environmentid-configs
      description: REST surface for v1-projects-projectId-environments-environmentId-configs.
      operations:
      - method: GET
        name: listremoteconfigs
        description: List Remote Configs
        call: remote-config-config.listremoteconfigs
        with:
          projectId: rest.projectId
          environmentId: rest.environmentId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/projects/{projectid}/environments/{environmentid}/configs/{configid}
      name: v1-projects-projectid-environments-environmentid-configs-configid
      description: REST surface for v1-projects-projectId-environments-environmentId-configs-configId.
      operations:
      - method: GET
        name: getremoteconfig
        description: Get Remote Config
        call: remote-config-config.getremoteconfig
        with:
          projectId: rest.projectId
          environmentId: rest.environmentId
          configId: rest.configId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateremoteconfig
        description: Update Remote Config
        call: remote-config-config.updateremoteconfig
        with:
          projectId: rest.projectId
          environmentId: rest.environmentId
          configId: rest.configId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: remote-config-config-mcp
    port: 9090
    transport: http
    description: MCP adapter for Unity Remote Config API — Config. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-remote-configs
      description: List Remote Configs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: remote-config-config.listremoteconfigs
      with:
        projectId: tools.projectId
        environmentId: tools.environmentId
      outputParameters:
      - type: object
        mapping: $.
    - name: get-remote-config
      description: Get Remote Config
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: remote-config-config.getremoteconfig
      with:
        projectId: tools.projectId
        environmentId: tools.environmentId
        configId: tools.configId
      outputParameters:
      - type: object
        mapping: $.
    - name: update-remote-config
      description: Update Remote Config
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: remote-config-config.updateremoteconfig
      with:
        projectId: tools.projectId
        environmentId: tools.environmentId
        configId: tools.configId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.