ARGUS Enterprise · Capability

Argus Enterprise Core API — Reports

Argus Enterprise Core API — Reports. 4 operations. Lead operation: Argus Enterprise List Reports. Self-contained Naftiko capability covering one Argus Enterprise business surface.

Run with Naftiko Argus EnterpriseReports

What You Can Do

GET
Listreports — Argus Enterprise List Reports
/v1/reports
POST
Generatereport — Argus Enterprise Generate a Report
/v1/reports
GET
Getreport — Argus Enterprise Get a Report
/v1/reports/{reportid}
GET
Downloadreport — Argus Enterprise Download a Report
/v1/reports/{reportid}/download

MCP Tools

argus-enterprise-list-reports

Argus Enterprise List Reports

read-only idempotent
argus-enterprise-generate-report

Argus Enterprise Generate a Report

argus-enterprise-get-report

Argus Enterprise Get a Report

read-only idempotent
argus-enterprise-download-report

Argus Enterprise Download a Report

read-only idempotent

Capability Spec

core-reports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Argus Enterprise Core API — Reports
  description: 'Argus Enterprise Core API — Reports. 4 operations. Lead operation: Argus Enterprise List Reports. Self-contained
    Naftiko capability covering one Argus Enterprise business surface.'
  tags:
  - Argus Enterprise
  - Reports
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ARGUS_ENTERPRISE_API_KEY: ARGUS_ENTERPRISE_API_KEY
capability:
  consumes:
  - type: http
    namespace: core-reports
    baseUri: https://api.argusenterprise.com/v1
    description: Argus Enterprise Core API — Reports business capability. Self-contained, no shared references.
    resources:
    - name: reports
      path: /reports
      operations:
      - name: listreports
        method: GET
        description: Argus Enterprise List Reports
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reportType
          in: query
          type: string
          description: Filter by report type
      - name: generatereport
        method: POST
        description: Argus Enterprise Generate a Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: reports-reportId
      path: /reports/{reportId}
      operations:
      - name: getreport
        method: GET
        description: Argus Enterprise Get a Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: reports-reportId-download
      path: /reports/{reportId}/download
      operations:
      - name: downloadreport
        method: GET
        description: Argus Enterprise Download a Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: format
          in: query
          type: string
          description: Output format for the report
    authentication:
      type: bearer
      token: '{{env.ARGUS_ENTERPRISE_API_KEY}}'
  exposes:
  - type: rest
    namespace: core-reports-rest
    port: 8080
    description: REST adapter for Argus Enterprise Core API — Reports. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/reports
      name: reports
      description: REST surface for reports.
      operations:
      - method: GET
        name: listreports
        description: Argus Enterprise List Reports
        call: core-reports.listreports
        with:
          reportType: rest.reportType
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: generatereport
        description: Argus Enterprise Generate a Report
        call: core-reports.generatereport
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/reports/{reportid}
      name: reports-reportid
      description: REST surface for reports-reportId.
      operations:
      - method: GET
        name: getreport
        description: Argus Enterprise Get a Report
        call: core-reports.getreport
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/reports/{reportid}/download
      name: reports-reportid-download
      description: REST surface for reports-reportId-download.
      operations:
      - method: GET
        name: downloadreport
        description: Argus Enterprise Download a Report
        call: core-reports.downloadreport
        with:
          format: rest.format
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: core-reports-mcp
    port: 9090
    transport: http
    description: MCP adapter for Argus Enterprise Core API — Reports. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: argus-enterprise-list-reports
      description: Argus Enterprise List Reports
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-reports.listreports
      with:
        reportType: tools.reportType
      outputParameters:
      - type: object
        mapping: $.
    - name: argus-enterprise-generate-report
      description: Argus Enterprise Generate a Report
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: core-reports.generatereport
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: argus-enterprise-get-report
      description: Argus Enterprise Get a Report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-reports.getreport
      outputParameters:
      - type: object
        mapping: $.
    - name: argus-enterprise-download-report
      description: Argus Enterprise Download a Report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-reports.downloadreport
      with:
        format: tools.format
      outputParameters:
      - type: object
        mapping: $.