Vantage · Capability

Vantage Cloud Pricing API

Vantage Cloud Pricing API. 2 operations. Lead operation: Vantage Get All Services. Self-contained Naftiko capability covering one Vantage business surface.

Run with Naftiko Vantage

What You Can Do

GET
Getservices — Vantage Get All Services
/v1/services
GET
Getservice — Vantage Get a Service
/v1/services/{service-id}

MCP Tools

vantage-get-all-services

Vantage Get All Services

read-only idempotent
vantage-get-service

Vantage Get a Service

read-only idempotent

Capability Spec

cloud-pricing-general.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Vantage Cloud Pricing API
  description: 'Vantage Cloud Pricing API. 2 operations. Lead operation: Vantage Get All Services. Self-contained Naftiko
    capability covering one Vantage business surface.'
  tags:
  - Vantage
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VANTAGE_API_KEY: VANTAGE_API_KEY
capability:
  consumes:
  - type: http
    namespace: cloud-pricing-general
    baseUri: https://api.vantage.sh/v1
    description: Vantage Cloud Pricing API business capability. Self-contained, no shared references.
    resources:
    - name: services
      path: /services
      operations:
      - name: getservices
        method: GET
        description: Vantage Get All Services
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: provider_id
          in: query
          type: string
          description: Filter services by a specific cloud provider identifier.
    - name: services-service_id
      path: /services/{service_id}
      operations:
      - name: getservice
        method: GET
        description: Vantage Get a Service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: service_id
          in: path
          type: string
          description: The identifier of the service.
          required: true
    authentication:
      type: bearer
      token: '{{env.VANTAGE_API_KEY}}'
  exposes:
  - type: rest
    namespace: cloud-pricing-general-rest
    port: 8080
    description: REST adapter for Vantage Cloud Pricing API. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/services
      name: services
      description: REST surface for services.
      operations:
      - method: GET
        name: getservices
        description: Vantage Get All Services
        call: cloud-pricing-general.getservices
        with:
          provider_id: rest.provider_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/{service-id}
      name: services-service-id
      description: REST surface for services-service_id.
      operations:
      - method: GET
        name: getservice
        description: Vantage Get a Service
        call: cloud-pricing-general.getservice
        with:
          service_id: rest.service_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cloud-pricing-general-mcp
    port: 9090
    transport: http
    description: MCP adapter for Vantage Cloud Pricing API. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: vantage-get-all-services
      description: Vantage Get All Services
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-pricing-general.getservices
      with:
        provider_id: tools.provider_id
      outputParameters:
      - type: object
        mapping: $.
    - name: vantage-get-service
      description: Vantage Get a Service
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-pricing-general.getservice
      with:
        service_id: tools.service_id
      outputParameters:
      - type: object
        mapping: $.