Vantage · Capability

Vantage Cost Management API — Cost Reports

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

Run with Naftiko VantageCost Reports

What You Can Do

GET
Getcostreports — Vantage Get All Cost Reports
/v1/cost-reports
POST
Createcostreport — Vantage Create a Cost Report
/v1/cost-reports
GET
Getcostreport — Vantage Get a Cost Report
/v1/cost-reports/{cost-report-token}
PUT
Updatecostreport — Vantage Update a Cost Report
/v1/cost-reports/{cost-report-token}
DELETE
Deletecostreport — Vantage Delete a Cost Report
/v1/cost-reports/{cost-report-token}

MCP Tools

vantage-get-all-cost-reports

Vantage Get All Cost Reports

read-only idempotent
vantage-create-cost-report

Vantage Create a Cost Report

vantage-get-cost-report

Vantage Get a Cost Report

read-only idempotent
vantage-update-cost-report

Vantage Update a Cost Report

idempotent
vantage-delete-cost-report

Vantage Delete a Cost Report

idempotent

Capability Spec

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