Tetrate · Capability

Tetrate Service Bridge REST API — Applications

Tetrate Service Bridge REST API — Applications. 5 operations. Lead operation: List Applications. Self-contained Naftiko capability covering one Tetrate business surface.

Run with Naftiko TetrateApplications

What You Can Do

GET
Listapplications — List Applications
/v1/organizations/{organization}/tenants/{tenant}/applications
POST
Createapplication — Create Application
/v1/organizations/{organization}/tenants/{tenant}/applications
GET
Getapplication — Get Application
/v1/organizations/{organization}/tenants/{tenant}/applications/{application}
PUT
Updateapplication — Update Application
/v1/organizations/{organization}/tenants/{tenant}/applications/{application}
DELETE
Deleteapplication — Delete Application
/v1/organizations/{organization}/tenants/{tenant}/applications/{application}

MCP Tools

list-applications

List Applications

read-only idempotent
create-application

Create Application

get-application

Get Application

read-only idempotent
update-application

Update Application

idempotent
delete-application

Delete Application

idempotent

Capability Spec

service-bridge-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tetrate Service Bridge REST API — Applications
  description: 'Tetrate Service Bridge REST API — Applications. 5 operations. Lead operation: List Applications. Self-contained
    Naftiko capability covering one Tetrate business surface.'
  tags:
  - Tetrate
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TETRATE_API_KEY: TETRATE_API_KEY
capability:
  consumes:
  - type: http
    namespace: service-bridge-applications
    baseUri: https://{tsb-host}:8443/v2
    description: Tetrate Service Bridge REST API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organization-tenants-tenant-applications
      path: /organizations/{organization}/tenants/{tenant}/applications
      operations:
      - name: listapplications
        method: GET
        description: List Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createapplication
        method: POST
        description: Create Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: organizations-organization-tenants-tenant-applications-application
      path: /organizations/{organization}/tenants/{tenant}/applications/{application}
      operations:
      - name: getapplication
        method: GET
        description: Get Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateapplication
        method: PUT
        description: Update Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteapplication
        method: DELETE
        description: Delete Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: x-tetrate-token
      value: '{{env.TETRATE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: service-bridge-applications-rest
    port: 8080
    description: REST adapter for Tetrate Service Bridge REST API — Applications. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/organizations/{organization}/tenants/{tenant}/applications
      name: organizations-organization-tenants-tenant-applications
      description: REST surface for organizations-organization-tenants-tenant-applications.
      operations:
      - method: GET
        name: listapplications
        description: List Applications
        call: service-bridge-applications.listapplications
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapplication
        description: Create Application
        call: service-bridge-applications.createapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/{organization}/tenants/{tenant}/applications/{application}
      name: organizations-organization-tenants-tenant-applications-application
      description: REST surface for organizations-organization-tenants-tenant-applications-application.
      operations:
      - method: GET
        name: getapplication
        description: Get Application
        call: service-bridge-applications.getapplication
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateapplication
        description: Update Application
        call: service-bridge-applications.updateapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteapplication
        description: Delete Application
        call: service-bridge-applications.deleteapplication
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: service-bridge-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tetrate Service Bridge REST API — Applications. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-applications
      description: List Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-bridge-applications.listapplications
      outputParameters:
      - type: object
        mapping: $.
    - name: create-application
      description: Create Application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: service-bridge-applications.createapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-application
      description: Get Application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-bridge-applications.getapplication
      outputParameters:
      - type: object
        mapping: $.
    - name: update-application
      description: Update Application
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: service-bridge-applications.updateapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-application
      description: Delete Application
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: service-bridge-applications.deleteapplication
      outputParameters:
      - type: object
        mapping: $.