Paradox · Capability

Paradox API — Reporting

Paradox API — Reporting. 3 operations. Lead operation: Paradox Get report list. Self-contained Naftiko capability covering one Paradox business surface.

Run with Naftiko ParadoxReporting

What You Can Do

GET
Getreports — Paradox Get report list
/v1/reporting/reports
POST
Createreport — Paradox Create report
/v1/reporting/reports
GET
Getreport — Paradox Get single report
/v1/reporting/reports/{id}

MCP Tools

paradox-get-report-list

Paradox Get report list

read-only idempotent
paradox-create-report

Paradox Create report

paradox-get-single-report

Paradox Get single report

read-only idempotent

Capability Spec

paradox-reporting.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Paradox API — Reporting
  description: 'Paradox API — Reporting. 3 operations. Lead operation: Paradox Get report list. Self-contained Naftiko capability
    covering one Paradox business surface.'
  tags:
  - Paradox
  - Reporting
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PARADOX_API_KEY: PARADOX_API_KEY
capability:
  consumes:
  - type: http
    namespace: paradox-reporting
    baseUri: https://api.paradox.ai/api/v1/public
    description: Paradox API — Reporting business capability. Self-contained, no shared references.
    resources:
    - name: reporting-reports
      path: /reporting/reports
      operations:
      - name: getreports
        method: GET
        description: Paradox Get report list
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createreport
        method: POST
        description: Paradox Create report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: reporting-reports-id
      path: /reporting/reports/{id}
      operations:
      - name: getreport
        method: GET
        description: Paradox Get single report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Report identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.PARADOX_API_KEY}}'
  exposes:
  - type: rest
    namespace: paradox-reporting-rest
    port: 8080
    description: REST adapter for Paradox API — Reporting. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/reporting/reports
      name: reporting-reports
      description: REST surface for reporting-reports.
      operations:
      - method: GET
        name: getreports
        description: Paradox Get report list
        call: paradox-reporting.getreports
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createreport
        description: Paradox Create report
        call: paradox-reporting.createreport
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/reporting/reports/{id}
      name: reporting-reports-id
      description: REST surface for reporting-reports-id.
      operations:
      - method: GET
        name: getreport
        description: Paradox Get single report
        call: paradox-reporting.getreport
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: paradox-reporting-mcp
    port: 9090
    transport: http
    description: MCP adapter for Paradox API — Reporting. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: paradox-get-report-list
      description: Paradox Get report list
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: paradox-reporting.getreports
      outputParameters:
      - type: object
        mapping: $.
    - name: paradox-create-report
      description: Paradox Create report
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: paradox-reporting.createreport
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: paradox-get-single-report
      description: Paradox Get single report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: paradox-reporting.getreport
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.