Oracle Essbase · Capability

Oracle Essbase REST API — Partitions

Oracle Essbase REST API — Partitions. 3 operations. Lead operation: Oracle Essbase Get Supported Partition Types. Self-contained Naftiko capability covering one Oracle Essbase business surface.

Run with Naftiko Oracle EssbasePartitions

What You Can Do

GET
Getsupportedpartitiontypes — Oracle Essbase Get Supported Partition Types
/v1/applications/partitions/supportedfederatedtypes
GET
Listpartitions — Oracle Essbase List Partitions
/v1/applications/{applicationname}/databases/{databasename}/partitions
POST
Createpartition — Oracle Essbase Create Partition
/v1/applications/{applicationname}/databases/{databasename}/partitions

MCP Tools

oracle-essbase-get-supported-partition

Oracle Essbase Get Supported Partition Types

read-only idempotent
oracle-essbase-list-partitions

Oracle Essbase List Partitions

read-only idempotent
oracle-essbase-create-partition

Oracle Essbase Create Partition

Capability Spec

rest-partitions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Essbase REST API — Partitions
  description: 'Oracle Essbase REST API — Partitions. 3 operations. Lead operation: Oracle Essbase Get Supported Partition
    Types. Self-contained Naftiko capability covering one Oracle Essbase business surface.'
  tags:
  - Oracle Essbase
  - Partitions
  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-partitions
    baseUri: https://{host}:{port}/essbase/rest/v1
    description: Oracle Essbase REST API — Partitions business capability. Self-contained, no shared references.
    resources:
    - name: applications-partitions-supportedfederatedtypes
      path: /applications/partitions/supportedfederatedtypes
      operations:
      - name: getsupportedpartitiontypes
        method: GET
        description: Oracle Essbase Get Supported Partition Types
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: applications-applicationName-databases-databaseName-partitions
      path: /applications/{applicationName}/databases/{databaseName}/partitions
      operations:
      - name: listpartitions
        method: GET
        description: Oracle Essbase List Partitions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createpartition
        method: POST
        description: Oracle Essbase Create Partition
        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.ORACLE_ESSBASE_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-partitions-rest
    port: 8080
    description: REST adapter for Oracle Essbase REST API — Partitions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/applications/partitions/supportedfederatedtypes
      name: applications-partitions-supportedfederatedtypes
      description: REST surface for applications-partitions-supportedfederatedtypes.
      operations:
      - method: GET
        name: getsupportedpartitiontypes
        description: Oracle Essbase Get Supported Partition Types
        call: rest-partitions.getsupportedpartitiontypes
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applications/{applicationname}/databases/{databasename}/partitions
      name: applications-applicationname-databases-databasename-partitions
      description: REST surface for applications-applicationName-databases-databaseName-partitions.
      operations:
      - method: GET
        name: listpartitions
        description: Oracle Essbase List Partitions
        call: rest-partitions.listpartitions
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createpartition
        description: Oracle Essbase Create Partition
        call: rest-partitions.createpartition
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-partitions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Essbase REST API — Partitions. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: oracle-essbase-get-supported-partition
      description: Oracle Essbase Get Supported Partition Types
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-partitions.getsupportedpartitiontypes
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-essbase-list-partitions
      description: Oracle Essbase List Partitions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-partitions.listpartitions
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-essbase-create-partition
      description: Oracle Essbase Create Partition
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-partitions.createpartition
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.