Cumulocity · Capability

Cumulocity Application API — Bootstrap Users

Retrieve the bootstrap user credentials a Cumulocity microservice uses to authenticate to the platform.

Cumulocity Application API — Bootstrap Users is a Naftiko capability published by Cumulocity, one of 31 capabilities the APIs.io network indexes for this provider. It bundles 1 operation.

The capability includes 1 read-only operation. Lead operation: Get the bootstrap user credentials for a Cumulocity microservice application. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Cumulocity, Microservices, and Bootstrap Users.

Run with Naftiko CumulocityMicroservicesBootstrap Users

MCP Tools

cumulocity-get-bootstrap-user

Get the bootstrap user credentials for a Cumulocity microservice application.

read-only idempotent

Capability Spec

application-bootstrap-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cumulocity Application API — Bootstrap Users
  description: Retrieve the bootstrap user credentials a Cumulocity microservice uses to authenticate to the platform.
  tags: [Cumulocity, Microservices, Bootstrap Users]
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    C8Y_BASE_URL: C8Y_BASE_URL
    C8Y_USER: C8Y_USER
    C8Y_PASSWORD: C8Y_PASSWORD
capability:
  consumes:
  - type: http
    namespace: application-bootstrap-users
    baseUri: '{{env.C8Y_BASE_URL}}'
    resources:
    - name: bootstrap-user
      path: /application/applications/{id}/bootstrapUser
      operations:
      - name: getbootstrapuser
        method: GET
        description: Retrieve The Bootstrap User Of A Microservice Application
        inputParameters:
        - {name: id, in: path, type: string, required: true}
    authentication:
      type: basic
      username: '{{env.C8Y_USER}}'
      password: '{{env.C8Y_PASSWORD}}'
  exposes:
  - type: mcp
    namespace: application-bootstrap-users-mcp
    port: 9090
    transport: http
    tools:
    - name: cumulocity-get-bootstrap-user
      description: Get the bootstrap user credentials for a Cumulocity microservice application.
      hints: {readOnly: true, destructive: false, idempotent: true}
      call: application-bootstrap-users.getbootstrapuser
      with: {id: tools.id}