Oracle Essbase · Capability

Oracle Essbase REST API — Variables

Oracle Essbase REST API — Variables. 4 operations. Lead operation: Oracle Essbase List Server Variables. Self-contained Naftiko capability covering one Oracle Essbase business surface.

Run with Naftiko Oracle EssbaseVariables

What You Can Do

GET
Listservervariables — Oracle Essbase List Server Variables
/v1/variables
POST
Createservervariable — Oracle Essbase Create Server Variable
/v1/variables
PUT
Updateservervariable — Oracle Essbase Update Server Variable
/v1/variables/{variablename}
DELETE
Deleteservervariable — Oracle Essbase Delete Server Variable
/v1/variables/{variablename}

MCP Tools

oracle-essbase-list-server-variables

Oracle Essbase List Server Variables

read-only idempotent
oracle-essbase-create-server-variable

Oracle Essbase Create Server Variable

oracle-essbase-update-server-variable

Oracle Essbase Update Server Variable

idempotent
oracle-essbase-delete-server-variable

Oracle Essbase Delete Server Variable

idempotent

Capability Spec

rest-variables.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Essbase REST API — Variables
  description: 'Oracle Essbase REST API — Variables. 4 operations. Lead operation: Oracle Essbase List Server Variables. Self-contained
    Naftiko capability covering one Oracle Essbase business surface.'
  tags:
  - Oracle Essbase
  - Variables
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_ESSBASE_API_KEY: ORACLE_ESSBASE_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-variables
    baseUri: https://{host}:{port}/essbase/rest/v1
    description: Oracle Essbase REST API — Variables business capability. Self-contained, no shared references.
    resources:
    - name: variables
      path: /variables
      operations:
      - name: listservervariables
        method: GET
        description: Oracle Essbase List Server Variables
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createservervariable
        method: POST
        description: Oracle Essbase Create Server Variable
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: variables-variableName
      path: /variables/{variableName}
      operations:
      - name: updateservervariable
        method: PUT
        description: Oracle Essbase Update Server Variable
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: variableName
          in: path
          type: string
          description: Variable name.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteservervariable
        method: DELETE
        description: Oracle Essbase Delete Server Variable
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: variableName
          in: path
          type: string
          description: Variable name.
          required: true
    authentication:
      type: bearer
      token: '{{env.ORACLE_ESSBASE_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-variables-rest
    port: 8080
    description: REST adapter for Oracle Essbase REST API — Variables. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/variables
      name: variables
      description: REST surface for variables.
      operations:
      - method: GET
        name: listservervariables
        description: Oracle Essbase List Server Variables
        call: rest-variables.listservervariables
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createservervariable
        description: Oracle Essbase Create Server Variable
        call: rest-variables.createservervariable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/variables/{variablename}
      name: variables-variablename
      description: REST surface for variables-variableName.
      operations:
      - method: PUT
        name: updateservervariable
        description: Oracle Essbase Update Server Variable
        call: rest-variables.updateservervariable
        with:
          variableName: rest.variableName
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteservervariable
        description: Oracle Essbase Delete Server Variable
        call: rest-variables.deleteservervariable
        with:
          variableName: rest.variableName
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-variables-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Essbase REST API — Variables. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: oracle-essbase-list-server-variables
      description: Oracle Essbase List Server Variables
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-variables.listservervariables
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-essbase-create-server-variable
      description: Oracle Essbase Create Server Variable
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-variables.createservervariable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-essbase-update-server-variable
      description: Oracle Essbase Update Server Variable
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: rest-variables.updateservervariable
      with:
        variableName: tools.variableName
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-essbase-delete-server-variable
      description: Oracle Essbase Delete Server Variable
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: rest-variables.deleteservervariable
      with:
        variableName: tools.variableName
      outputParameters:
      - type: object
        mapping: $.