Vantage · Capability

Vantage Cost Management API — Dashboards

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

Run with Naftiko VantageDashboards

What You Can Do

GET
Getdashboards — Vantage Get All Dashboards
/v1/dashboards
POST
Createdashboard — Vantage Create a Dashboard
/v1/dashboards
GET
Getdashboard — Vantage Get a Dashboard
/v1/dashboards/{dashboard-token}
PUT
Updatedashboard — Vantage Update a Dashboard
/v1/dashboards/{dashboard-token}
DELETE
Deletedashboard — Vantage Delete a Dashboard
/v1/dashboards/{dashboard-token}

MCP Tools

vantage-get-all-dashboards

Vantage Get All Dashboards

read-only idempotent
vantage-create-dashboard

Vantage Create a Dashboard

vantage-get-dashboard

Vantage Get a Dashboard

read-only idempotent
vantage-update-dashboard

Vantage Update a Dashboard

idempotent
vantage-delete-dashboard

Vantage Delete a Dashboard

idempotent

Capability Spec

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