Checkmarx · Capability

Checkmarx One API — Configuration

Checkmarx One API — Configuration. 2 operations. Lead operation: Checkmarx Get project scan configuration. Self-contained Naftiko capability covering one Checkmarx business surface.

Run with Naftiko CheckmarxConfiguration

What You Can Do

GET
Getprojectconfiguration — Checkmarx Get project scan configuration
/v1/configuration/project
PATCH
Updateprojectconfiguration — Checkmarx Update project scan configuration
/v1/configuration/project

MCP Tools

checkmarx-get-project-scan-configuration

Checkmarx Get project scan configuration

read-only idempotent
checkmarx-update-project-scan-configuration

Checkmarx Update project scan configuration

idempotent

Capability Spec

one-configuration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Checkmarx One API — Configuration
  description: 'Checkmarx One API — Configuration. 2 operations. Lead operation: Checkmarx Get project scan configuration.
    Self-contained Naftiko capability covering one Checkmarx business surface.'
  tags:
  - Checkmarx
  - Configuration
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CHECKMARX_API_KEY: CHECKMARX_API_KEY
capability:
  consumes:
  - type: http
    namespace: one-configuration
    baseUri: https://ast.checkmarx.net/api
    description: Checkmarx One API — Configuration business capability. Self-contained, no shared references.
    resources:
    - name: configuration-project
      path: /configuration/project
      operations:
      - name: getprojectconfiguration
        method: GET
        description: Checkmarx Get project scan configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: project-id
          in: query
          type: string
          description: Project ID
          required: true
      - name: updateprojectconfiguration
        method: PATCH
        description: Checkmarx Update project scan configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: project-id
          in: query
          type: string
          description: Project ID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.CHECKMARX_API_KEY}}'
  exposes:
  - type: rest
    namespace: one-configuration-rest
    port: 8080
    description: REST adapter for Checkmarx One API — Configuration. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/configuration/project
      name: configuration-project
      description: REST surface for configuration-project.
      operations:
      - method: GET
        name: getprojectconfiguration
        description: Checkmarx Get project scan configuration
        call: one-configuration.getprojectconfiguration
        with:
          project-id: rest.project-id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateprojectconfiguration
        description: Checkmarx Update project scan configuration
        call: one-configuration.updateprojectconfiguration
        with:
          project-id: rest.project-id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: one-configuration-mcp
    port: 9090
    transport: http
    description: MCP adapter for Checkmarx One API — Configuration. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: checkmarx-get-project-scan-configuration
      description: Checkmarx Get project scan configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: one-configuration.getprojectconfiguration
      with:
        project-id: tools.project-id
      outputParameters:
      - type: object
        mapping: $.
    - name: checkmarx-update-project-scan-configuration
      description: Checkmarx Update project scan configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: one-configuration.updateprojectconfiguration
      with:
        project-id: tools.project-id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.