Fortify · Capability

Fortify Software Security Center API — Users

Fortify Software Security Center API — Users. 5 operations. Lead operation: Fortify List local users. Self-contained Naftiko capability covering one Fortify business surface.

Run with Naftiko FortifyUsers

What You Can Do

GET
Listlocalusers — Fortify List local users
/v1/localusers
POST
Createlocaluser — Fortify Create local user
/v1/localusers
GET
Getlocaluser — Fortify Get local user
/v1/localusers/{id}
PUT
Updatelocaluser — Fortify Update local user
/v1/localusers/{id}
DELETE
Deletelocaluser — Fortify Delete local user
/v1/localusers/{id}

MCP Tools

fortify-list-local-users

Fortify List local users

read-only idempotent
fortify-create-local-user

Fortify Create local user

fortify-get-local-user

Fortify Get local user

read-only idempotent
fortify-update-local-user

Fortify Update local user

idempotent
fortify-delete-local-user

Fortify Delete local user

idempotent

Capability Spec

software-security-center-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fortify Software Security Center API — Users
  description: 'Fortify Software Security Center API — Users. 5 operations. Lead operation: Fortify List local users. Self-contained
    Naftiko capability covering one Fortify business surface.'
  tags:
  - Fortify
  - Users
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FORTIFY_API_KEY: FORTIFY_API_KEY
capability:
  consumes:
  - type: http
    namespace: software-security-center-users
    baseUri: ''
    description: Fortify Software Security Center API — Users business capability. Self-contained, no shared references.
    resources:
    - name: localUsers
      path: /localUsers
      operations:
      - name: listlocalusers
        method: GET
        description: Fortify List local users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createlocaluser
        method: POST
        description: Fortify Create local user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: localUsers-id
      path: /localUsers/{id}
      operations:
      - name: getlocaluser
        method: GET
        description: Fortify Get local user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatelocaluser
        method: PUT
        description: Fortify Update local user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletelocaluser
        method: DELETE
        description: Fortify Delete local user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.FORTIFY_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: software-security-center-users-rest
    port: 8080
    description: REST adapter for Fortify Software Security Center API — Users. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/localusers
      name: localusers
      description: REST surface for localUsers.
      operations:
      - method: GET
        name: listlocalusers
        description: Fortify List local users
        call: software-security-center-users.listlocalusers
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createlocaluser
        description: Fortify Create local user
        call: software-security-center-users.createlocaluser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/localusers/{id}
      name: localusers-id
      description: REST surface for localUsers-id.
      operations:
      - method: GET
        name: getlocaluser
        description: Fortify Get local user
        call: software-security-center-users.getlocaluser
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatelocaluser
        description: Fortify Update local user
        call: software-security-center-users.updatelocaluser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletelocaluser
        description: Fortify Delete local user
        call: software-security-center-users.deletelocaluser
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: software-security-center-users-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fortify Software Security Center API — Users. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: fortify-list-local-users
      description: Fortify List local users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: software-security-center-users.listlocalusers
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-create-local-user
      description: Fortify Create local user
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: software-security-center-users.createlocaluser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-get-local-user
      description: Fortify Get local user
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: software-security-center-users.getlocaluser
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-update-local-user
      description: Fortify Update local user
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: software-security-center-users.updatelocaluser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-delete-local-user
      description: Fortify Delete local user
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: software-security-center-users.deletelocaluser
      outputParameters:
      - type: object
        mapping: $.