Fortify · Capability

Fortify Software Security Center API — Authentication

Fortify Software Security Center API — Authentication. 2 operations. Lead operation: Fortify Create authentication token. Self-contained Naftiko capability covering one Fortify business surface.

Run with Naftiko FortifyAuthentication

What You Can Do

POST
Createtoken — Fortify Create authentication token
/v1/tokens
DELETE
Revoketoken — Fortify Revoke authentication token
/v1/tokens/{id}

MCP Tools

fortify-create-authentication-token

Fortify Create authentication token

fortify-revoke-authentication-token

Fortify Revoke authentication token

idempotent

Capability Spec

software-security-center-authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fortify Software Security Center API — Authentication
  description: 'Fortify Software Security Center API — Authentication. 2 operations. Lead operation: Fortify Create authentication
    token. Self-contained Naftiko capability covering one Fortify business surface.'
  tags:
  - Fortify
  - Authentication
  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-authentication
    baseUri: ''
    description: Fortify Software Security Center API — Authentication business capability. Self-contained, no shared references.
    resources:
    - name: tokens
      path: /tokens
      operations:
      - name: createtoken
        method: POST
        description: Fortify Create authentication token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: tokens-id
      path: /tokens/{id}
      operations:
      - name: revoketoken
        method: DELETE
        description: Fortify Revoke authentication token
        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-authentication-rest
    port: 8080
    description: REST adapter for Fortify Software Security Center API — Authentication. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/tokens
      name: tokens
      description: REST surface for tokens.
      operations:
      - method: POST
        name: createtoken
        description: Fortify Create authentication token
        call: software-security-center-authentication.createtoken
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/tokens/{id}
      name: tokens-id
      description: REST surface for tokens-id.
      operations:
      - method: DELETE
        name: revoketoken
        description: Fortify Revoke authentication token
        call: software-security-center-authentication.revoketoken
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: software-security-center-authentication-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fortify Software Security Center API — Authentication. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: fortify-create-authentication-token
      description: Fortify Create authentication token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: software-security-center-authentication.createtoken
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-revoke-authentication-token
      description: Fortify Revoke authentication token
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: software-security-center-authentication.revoketoken
      outputParameters:
      - type: object
        mapping: $.