Fortify · Capability

Fortify on Demand API — Mobile Scans

Fortify on Demand API — Mobile Scans. 3 operations. Lead operation: Fortify Get mobile scan setup. Self-contained Naftiko capability covering one Fortify business surface.

Run with Naftiko FortifyMobile Scans

What You Can Do

GET
Getmobilescansetup — Fortify Get mobile scan setup
/v1/api/v3/releases/{releaseid}/mobile-scans/scan-setup
PUT
Savemobilescansetup — Fortify Save mobile scan setup
/v1/api/v3/releases/{releaseid}/mobile-scans/scan-setup
POST
Startmobilescan — Fortify Start mobile scan
/v1/api/v3/releases/{releaseid}/mobile-scans/start-scan

MCP Tools

fortify-get-mobile-scan-setup

Fortify Get mobile scan setup

read-only idempotent
fortify-save-mobile-scan-setup

Fortify Save mobile scan setup

idempotent
fortify-start-mobile-scan

Fortify Start mobile scan

Capability Spec

on-demand-mobile-scans.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fortify on Demand API — Mobile Scans
  description: 'Fortify on Demand API — Mobile Scans. 3 operations. Lead operation: Fortify Get mobile scan setup. Self-contained
    Naftiko capability covering one Fortify business surface.'
  tags:
  - Fortify
  - Mobile Scans
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FORTIFY_API_KEY: FORTIFY_API_KEY
capability:
  consumes:
  - type: http
    namespace: on-demand-mobile-scans
    baseUri: https://api.ams.fortify.com
    description: Fortify on Demand API — Mobile Scans business capability. Self-contained, no shared references.
    resources:
    - name: api-v3-releases-releaseId-mobile-scans-scan-setup
      path: /api/v3/releases/{releaseId}/mobile-scans/scan-setup
      operations:
      - name: getmobilescansetup
        method: GET
        description: Fortify Get mobile scan setup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: savemobilescansetup
        method: PUT
        description: Fortify Save mobile scan setup
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v3-releases-releaseId-mobile-scans-start-scan
      path: /api/v3/releases/{releaseId}/mobile-scans/start-scan
      operations:
      - name: startmobilescan
        method: POST
        description: Fortify Start mobile scan
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: startDate
          in: query
          type: string
          description: Scheduled start date for the scan
        - name: assessmentTypeId
          in: query
          type: integer
          description: Assessment type identifier
        - name: frameworkType
          in: query
          type: string
          description: Mobile framework type
        - name: timeZone
          in: query
          type: string
          description: Time zone for scheduled scans
        - name: entitlementId
          in: query
          type: integer
          description: Entitlement identifier
        - name: entitlementFrequencyType
          in: query
          type: string
          description: Entitlement frequency type
        - name: isRemediationScan
          in: query
          type: boolean
          description: Whether this is a remediation scan
    authentication:
      type: bearer
      token: '{{env.FORTIFY_API_KEY}}'
  exposes:
  - type: rest
    namespace: on-demand-mobile-scans-rest
    port: 8080
    description: REST adapter for Fortify on Demand API — Mobile Scans. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v3/releases/{releaseid}/mobile-scans/scan-setup
      name: api-v3-releases-releaseid-mobile-scans-scan-setup
      description: REST surface for api-v3-releases-releaseId-mobile-scans-scan-setup.
      operations:
      - method: GET
        name: getmobilescansetup
        description: Fortify Get mobile scan setup
        call: on-demand-mobile-scans.getmobilescansetup
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: savemobilescansetup
        description: Fortify Save mobile scan setup
        call: on-demand-mobile-scans.savemobilescansetup
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v3/releases/{releaseid}/mobile-scans/start-scan
      name: api-v3-releases-releaseid-mobile-scans-start-scan
      description: REST surface for api-v3-releases-releaseId-mobile-scans-start-scan.
      operations:
      - method: POST
        name: startmobilescan
        description: Fortify Start mobile scan
        call: on-demand-mobile-scans.startmobilescan
        with:
          startDate: rest.startDate
          assessmentTypeId: rest.assessmentTypeId
          frameworkType: rest.frameworkType
          timeZone: rest.timeZone
          entitlementId: rest.entitlementId
          entitlementFrequencyType: rest.entitlementFrequencyType
          isRemediationScan: rest.isRemediationScan
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: on-demand-mobile-scans-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fortify on Demand API — Mobile Scans. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: fortify-get-mobile-scan-setup
      description: Fortify Get mobile scan setup
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: on-demand-mobile-scans.getmobilescansetup
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-save-mobile-scan-setup
      description: Fortify Save mobile scan setup
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: on-demand-mobile-scans.savemobilescansetup
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fortify-start-mobile-scan
      description: Fortify Start mobile scan
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: on-demand-mobile-scans.startmobilescan
      with:
        startDate: tools.startDate
        assessmentTypeId: tools.assessmentTypeId
        frameworkType: tools.frameworkType
        timeZone: tools.timeZone
        entitlementId: tools.entitlementId
        entitlementFrequencyType: tools.entitlementFrequencyType
        isRemediationScan: tools.isRemediationScan
      outputParameters:
      - type: object
        mapping: $.