SAP API Management · Capability

SAP API Management API Portal API — Applications

SAP API Management API Portal API — Applications. 2 operations. Lead operation: List Applications. Self-contained Naftiko capability covering one Sap Api Management business surface.

Run with Naftiko Sap Api ManagementApplications

What You Can Do

GET
Listapplications — List Applications
/v1/applications
POST
Createapplication — Create Application
/v1/applications

MCP Tools

list-applications

List Applications

read-only idempotent
create-application

Create Application

Capability Spec

portal-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SAP API Management API Portal API — Applications
  description: 'SAP API Management API Portal API — Applications. 2 operations. Lead operation: List Applications. Self-contained
    Naftiko capability covering one Sap Api Management business surface.'
  tags:
  - Sap Api Management
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SAP_API_MANAGEMENT_API_KEY: SAP_API_MANAGEMENT_API_KEY
capability:
  consumes:
  - type: http
    namespace: portal-applications
    baseUri: https://{tenantUrl}/apiportal/api/1.0/Management.svc
    description: SAP API Management API Portal API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: Applications
      path: /Applications
      operations:
      - name: listapplications
        method: GET
        description: List Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: $filter
          in: query
          type: string
        - name: $top
          in: query
          type: integer
      - 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
    authentication:
      type: bearer
      token: '{{env.SAP_API_MANAGEMENT_API_KEY}}'
  exposes:
  - type: rest
    namespace: portal-applications-rest
    port: 8080
    description: REST adapter for SAP API Management API Portal API — Applications. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/applications
      name: applications
      description: REST surface for Applications.
      operations:
      - method: GET
        name: listapplications
        description: List Applications
        call: portal-applications.listapplications
        with:
          $filter: rest.$filter
          $top: rest.$top
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapplication
        description: Create Application
        call: portal-applications.createapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: portal-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for SAP API Management API Portal 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: portal-applications.listapplications
      with:
        $filter: tools.$filter
        $top: tools.$top
      outputParameters:
      - type: object
        mapping: $.
    - name: create-application
      description: Create Application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: portal-applications.createapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.