Taxi Language API — Services

Taxi Language API — Services. 2 operations. Lead operation: List Services. Self-contained Naftiko capability covering one Taxi business surface.

Run with Naftiko TaxiServices

What You Can Do

GET
Listservices — List Services
/v1/services
GET
Getservice — Get Service
/v1/services/{service-name}

MCP Tools

list-services

List Services

read-only idempotent
get-service

Get Service

read-only idempotent

Capability Spec

language-services.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Taxi Language API — Services
  description: 'Taxi Language API — Services. 2 operations. Lead operation: List Services. Self-contained Naftiko capability
    covering one Taxi business surface.'
  tags:
  - Taxi
  - Services
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TAXI_API_KEY: TAXI_API_KEY
capability:
  consumes:
  - type: http
    namespace: language-services
    baseUri: https://api.taxilang.org
    description: Taxi Language API — Services business capability. Self-contained, no shared references.
    resources:
    - name: services
      path: /services
      operations:
      - name: listservices
        method: GET
        description: List Services
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: services-service_name
      path: /services/{service_name}
      operations:
      - name: getservice
        method: GET
        description: Get Service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: service_name
          in: path
          type: string
          description: Service name
          required: true
  exposes:
  - type: rest
    namespace: language-services-rest
    port: 8080
    description: REST adapter for Taxi Language API — Services. 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: listservices
        description: List Services
        call: language-services.listservices
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/{service-name}
      name: services-service-name
      description: REST surface for services-service_name.
      operations:
      - method: GET
        name: getservice
        description: Get Service
        call: language-services.getservice
        with:
          service_name: rest.service_name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: language-services-mcp
    port: 9090
    transport: http
    description: MCP adapter for Taxi Language API — Services. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-services
      description: List Services
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: language-services.listservices
      outputParameters:
      - type: object
        mapping: $.
    - name: get-service
      description: Get Service
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: language-services.getservice
      with:
        service_name: tools.service_name
      outputParameters:
      - type: object
        mapping: $.