lyft · Capability

Lyft Concierge API — Cost Estimates

Lyft Concierge API — Cost Estimates. 1 operations. Lead operation: List concierge cost estimates. Self-contained Naftiko capability covering one Lyft business surface.

Run with Naftiko LyftCost Estimates

What You Can Do

GET
Listconciergecostestimates — List concierge cost estimates
/v1/concierge/cost

MCP Tools

list-concierge-cost-estimates

List concierge cost estimates

read-only idempotent

Capability Spec

concierge-cost-estimates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Lyft Concierge API — Cost Estimates
  description: 'Lyft Concierge API — Cost Estimates. 1 operations. Lead operation: List concierge cost estimates. Self-contained
    Naftiko capability covering one Lyft business surface.'
  tags:
  - Lyft
  - Cost Estimates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LYFT_API_KEY: LYFT_API_KEY
capability:
  consumes:
  - type: http
    namespace: concierge-cost-estimates
    baseUri: https://api.lyft.com/v1
    description: Lyft Concierge API — Cost Estimates business capability. Self-contained, no shared references.
    resources:
    - name: concierge-cost
      path: /concierge/cost
      operations:
      - name: listconciergecostestimates
        method: GET
        description: List concierge cost estimates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: start_lat
          in: query
          type: number
          description: Latitude of the pickup location.
          required: true
        - name: start_lng
          in: query
          type: number
          description: Longitude of the pickup location.
          required: true
        - name: end_lat
          in: query
          type: number
          description: Latitude of the destination location.
          required: true
        - name: end_lng
          in: query
          type: number
          description: Longitude of the destination location.
          required: true
        - name: ride_type
          in: query
          type: string
          description: Filter cost estimates by a specific ride type.
    authentication:
      type: bearer
      token: '{{env.LYFT_API_KEY}}'
  exposes:
  - type: rest
    namespace: concierge-cost-estimates-rest
    port: 8080
    description: REST adapter for Lyft Concierge API — Cost Estimates. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/concierge/cost
      name: concierge-cost
      description: REST surface for concierge-cost.
      operations:
      - method: GET
        name: listconciergecostestimates
        description: List concierge cost estimates
        call: concierge-cost-estimates.listconciergecostestimates
        with:
          start_lat: rest.start_lat
          start_lng: rest.start_lng
          end_lat: rest.end_lat
          end_lng: rest.end_lng
          ride_type: rest.ride_type
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: concierge-cost-estimates-mcp
    port: 9090
    transport: http
    description: MCP adapter for Lyft Concierge API — Cost Estimates. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-concierge-cost-estimates
      description: List concierge cost estimates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: concierge-cost-estimates.listconciergecostestimates
      with:
        start_lat: tools.start_lat
        start_lng: tools.start_lng
        end_lat: tools.end_lat
        end_lng: tools.end_lng
        ride_type: tools.ride_type
      outputParameters:
      - type: object
        mapping: $.