Amazon Inspector · Capability

Amazon Inspector API — Scanning

Amazon Inspector API — Scanning. 2 operations. Lead operation: Disable Amazon Inspector scanning. Self-contained Naftiko capability covering one Amazon Inspector business surface.

Run with Naftiko Amazon InspectorScanning

What You Can Do

POST
Disable — Disable Amazon Inspector scanning
/v1/disable
POST
Enable — Enable Amazon Inspector scanning
/v1/enable

MCP Tools

disable-amazon-inspector-scanning

Disable Amazon Inspector scanning

enable-amazon-inspector-scanning

Enable Amazon Inspector scanning

Capability Spec

amazon-inspector-scanning.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amazon Inspector API — Scanning
  description: 'Amazon Inspector API — Scanning. 2 operations. Lead operation: Disable Amazon Inspector scanning. Self-contained
    Naftiko capability covering one Amazon Inspector business surface.'
  tags:
  - Amazon Inspector
  - Scanning
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMAZON_INSPECTOR_API_KEY: AMAZON_INSPECTOR_API_KEY
capability:
  consumes:
  - type: http
    namespace: amazon-inspector-scanning
    baseUri: https://inspector2.{region}.amazonaws.com
    description: Amazon Inspector API — Scanning business capability. Self-contained, no shared references.
    resources:
    - name: disable
      path: /disable
      operations:
      - name: disable
        method: POST
        description: Disable Amazon Inspector scanning
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: enable
      path: /enable
      operations:
      - name: enable
        method: POST
        description: Enable Amazon Inspector scanning
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.AMAZON_INSPECTOR_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: amazon-inspector-scanning-rest
    port: 8080
    description: REST adapter for Amazon Inspector API — Scanning. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/disable
      name: disable
      description: REST surface for disable.
      operations:
      - method: POST
        name: disable
        description: Disable Amazon Inspector scanning
        call: amazon-inspector-scanning.disable
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/enable
      name: enable
      description: REST surface for enable.
      operations:
      - method: POST
        name: enable
        description: Enable Amazon Inspector scanning
        call: amazon-inspector-scanning.enable
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: amazon-inspector-scanning-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amazon Inspector API — Scanning. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: disable-amazon-inspector-scanning
      description: Disable Amazon Inspector scanning
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-inspector-scanning.disable
      outputParameters:
      - type: object
        mapping: $.
    - name: enable-amazon-inspector-scanning
      description: Enable Amazon Inspector scanning
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: amazon-inspector-scanning.enable
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.