lyft · Capability

Lyft Ride-Sharing API — Profile

Lyft Ride-Sharing API — Profile. 1 operations. Lead operation: Get user profile. Self-contained Naftiko capability covering one Lyft business surface.

Run with Naftiko LyftProfile

What You Can Do

GET
Getprofile — Get user profile
/v1/profile

MCP Tools

get-user-profile

Get user profile

read-only idempotent

Capability Spec

ride-sharing-profile.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Lyft Ride-Sharing API — Profile
  description: 'Lyft Ride-Sharing API — Profile. 1 operations. Lead operation: Get user profile. Self-contained Naftiko capability
    covering one Lyft business surface.'
  tags:
  - Lyft
  - Profile
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LYFT_API_KEY: LYFT_API_KEY
capability:
  consumes:
  - type: http
    namespace: ride-sharing-profile
    baseUri: https://api.lyft.com/v1
    description: Lyft Ride-Sharing API — Profile business capability. Self-contained, no shared references.
    resources:
    - name: profile
      path: /profile
      operations:
      - name: getprofile
        method: GET
        description: Get user profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.LYFT_API_KEY}}'
  exposes:
  - type: rest
    namespace: ride-sharing-profile-rest
    port: 8080
    description: REST adapter for Lyft Ride-Sharing API — Profile. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/profile
      name: profile
      description: REST surface for profile.
      operations:
      - method: GET
        name: getprofile
        description: Get user profile
        call: ride-sharing-profile.getprofile
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ride-sharing-profile-mcp
    port: 9090
    transport: http
    description: MCP adapter for Lyft Ride-Sharing API — Profile. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-user-profile
      description: Get user profile
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ride-sharing-profile.getprofile
      outputParameters:
      - type: object
        mapping: $.