GitLab · Capability

GitLab api/v4/application — Applications

GitLab api/v4/application — Applications. 3 operations. Lead operation: GitLab Get Applications. Self-contained Naftiko capability covering one Gitlab business surface.

Run with Naftiko GitlabApplications

What You Can Do

GET
Getapiv4applications — GitLab Get Applications
/v1/api/v4/applications
POST
Postapiv4applications — GitLab Create a New Application
/v1/api/v4/applications
DELETE
Deleteapiv4applicationsid — GitLab Delete an Application
/v1/api/v4/applications/{id}

MCP Tools

gitlab-get-applications

GitLab Get Applications

read-only idempotent
gitlab-create-new-application

GitLab Create a New Application

gitlab-delete-application

GitLab Delete an Application

idempotent

Capability Spec

api-v4-application-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GitLab api/v4/application — Applications
  description: 'GitLab api/v4/application — Applications. 3 operations. Lead operation: GitLab Get Applications. Self-contained
    Naftiko capability covering one Gitlab business surface.'
  tags:
  - Gitlab
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITLAB_API_KEY: GITLAB_API_KEY
capability:
  consumes:
  - type: http
    namespace: api-v4-application-applications
    baseUri: https://www.gitlab.com/api
    description: GitLab api/v4/application — Applications business capability. Self-contained, no shared references.
    resources:
    - name: api-v4-applications
      path: /api/v4/applications
      operations:
      - name: getapiv4applications
        method: GET
        description: GitLab Get Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: postapiv4applications
        method: POST
        description: GitLab Create a New Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v4-applications-id
      path: /api/v4/applications/{id}
      operations:
      - name: deleteapiv4applicationsid
        method: DELETE
        description: GitLab Delete an Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: integer
          description: The ID of the application (not the application_id)
          required: true
  exposes:
  - type: rest
    namespace: api-v4-application-applications-rest
    port: 8080
    description: REST adapter for GitLab api/v4/application — Applications. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v4/applications
      name: api-v4-applications
      description: REST surface for api-v4-applications.
      operations:
      - method: GET
        name: getapiv4applications
        description: GitLab Get Applications
        call: api-v4-application-applications.getapiv4applications
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postapiv4applications
        description: GitLab Create a New Application
        call: api-v4-application-applications.postapiv4applications
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v4/applications/{id}
      name: api-v4-applications-id
      description: REST surface for api-v4-applications-id.
      operations:
      - method: DELETE
        name: deleteapiv4applicationsid
        description: GitLab Delete an Application
        call: api-v4-application-applications.deleteapiv4applicationsid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: api-v4-application-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for GitLab api/v4/application — Applications. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: gitlab-get-applications
      description: GitLab Get Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-v4-application-applications.getapiv4applications
      outputParameters:
      - type: object
        mapping: $.
    - name: gitlab-create-new-application
      description: GitLab Create a New Application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: api-v4-application-applications.postapiv4applications
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: gitlab-delete-application
      description: GitLab Delete an Application
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: api-v4-application-applications.deleteapiv4applicationsid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.