Vantage · Capability

Vantage Cost Management API — Resource Reports

Vantage Cost Management API — Resource Reports. 5 operations. Lead operation: Vantage Get All Resource Reports. Self-contained Naftiko capability covering one Vantage business surface.

Run with Naftiko VantageResource Reports

What You Can Do

GET
Getresourcereports — Vantage Get All Resource Reports
/v1/resource-reports
POST
Createresourcereport — Vantage Create a Resource Report
/v1/resource-reports
GET
Getresourcereport — Vantage Get a Resource Report
/v1/resource-reports/{resource-report-token}
PUT
Updateresourcereport — Vantage Update a Resource Report
/v1/resource-reports/{resource-report-token}
DELETE
Deleteresourcereport — Vantage Delete a Resource Report
/v1/resource-reports/{resource-report-token}

MCP Tools

vantage-get-all-resource-reports

Vantage Get All Resource Reports

read-only idempotent
vantage-create-resource-report

Vantage Create a Resource Report

vantage-get-resource-report

Vantage Get a Resource Report

read-only idempotent
vantage-update-resource-report

Vantage Update a Resource Report

idempotent
vantage-delete-resource-report

Vantage Delete a Resource Report

idempotent

Capability Spec

cost-management-resource-reports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Vantage Cost Management API — Resource Reports
  description: 'Vantage Cost Management API — Resource Reports. 5 operations. Lead operation: Vantage Get All Resource Reports.
    Self-contained Naftiko capability covering one Vantage business surface.'
  tags:
  - Vantage
  - Resource Reports
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VANTAGE_API_KEY: VANTAGE_API_KEY
capability:
  consumes:
  - type: http
    namespace: cost-management-resource-reports
    baseUri: https://api.vantage.sh/v2
    description: Vantage Cost Management API — Resource Reports business capability. Self-contained, no shared references.
    resources:
    - name: resource_reports
      path: /resource_reports
      operations:
      - name: getresourcereports
        method: GET
        description: Vantage Get All Resource Reports
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createresourcereport
        method: POST
        description: Vantage Create a Resource Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: resource_reports-resource_report_token
      path: /resource_reports/{resource_report_token}
      operations:
      - name: getresourcereport
        method: GET
        description: Vantage Get a Resource Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateresourcereport
        method: PUT
        description: Vantage Update a Resource Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteresourcereport
        method: DELETE
        description: Vantage Delete a Resource Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.VANTAGE_API_KEY}}'
  exposes:
  - type: rest
    namespace: cost-management-resource-reports-rest
    port: 8080
    description: REST adapter for Vantage Cost Management API — Resource Reports. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/resource-reports
      name: resource-reports
      description: REST surface for resource_reports.
      operations:
      - method: GET
        name: getresourcereports
        description: Vantage Get All Resource Reports
        call: cost-management-resource-reports.getresourcereports
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createresourcereport
        description: Vantage Create a Resource Report
        call: cost-management-resource-reports.createresourcereport
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/resource-reports/{resource-report-token}
      name: resource-reports-resource-report-token
      description: REST surface for resource_reports-resource_report_token.
      operations:
      - method: GET
        name: getresourcereport
        description: Vantage Get a Resource Report
        call: cost-management-resource-reports.getresourcereport
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateresourcereport
        description: Vantage Update a Resource Report
        call: cost-management-resource-reports.updateresourcereport
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteresourcereport
        description: Vantage Delete a Resource Report
        call: cost-management-resource-reports.deleteresourcereport
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cost-management-resource-reports-mcp
    port: 9090
    transport: http
    description: MCP adapter for Vantage Cost Management API — Resource Reports. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: vantage-get-all-resource-reports
      description: Vantage Get All Resource Reports
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cost-management-resource-reports.getresourcereports
      outputParameters:
      - type: object
        mapping: $.
    - name: vantage-create-resource-report
      description: Vantage Create a Resource Report
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cost-management-resource-reports.createresourcereport
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: vantage-get-resource-report
      description: Vantage Get a Resource Report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cost-management-resource-reports.getresourcereport
      outputParameters:
      - type: object
        mapping: $.
    - name: vantage-update-resource-report
      description: Vantage Update a Resource Report
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: cost-management-resource-reports.updateresourcereport
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: vantage-delete-resource-report
      description: Vantage Delete a Resource Report
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: cost-management-resource-reports.deleteresourcereport
      outputParameters:
      - type: object
        mapping: $.