MobileAPI.dev · Capability

MobileAPI — manufacturers

MobileAPI — manufacturers. 2 operations. Lead operation: List All Device Manufacturers. Self-contained Naftiko capability covering one Mobileapi Dev business surface.

Run with Naftiko Mobileapi Devmanufacturers

What You Can Do

GET
Manufacturerslist — List All Device Manufacturers
/v1/manufacturers
GET
Manufacturersread — Get Manufacturer by ID
/v1/manufacturers/{id}

MCP Tools

list-all-device-manufacturers

List All Device Manufacturers

read-only idempotent
get-manufacturer-id

Get Manufacturer by ID

read-only idempotent

Capability Spec

mobileapi-manufacturers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: MobileAPI — manufacturers
  description: 'MobileAPI — manufacturers. 2 operations. Lead operation: List All Device Manufacturers. Self-contained Naftiko
    capability covering one Mobileapi Dev business surface.'
  tags:
  - Mobileapi Dev
  - manufacturers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MOBILEAPI_DEV_API_KEY: MOBILEAPI_DEV_API_KEY
capability:
  consumes:
  - type: http
    namespace: mobileapi-manufacturers
    baseUri: https://api.mobileapi.dev
    description: MobileAPI — manufacturers business capability. Self-contained, no shared references.
    resources:
    - name: manufacturers
      path: /manufacturers/
      operations:
      - name: manufacturerslist
        method: GET
        description: List All Device Manufacturers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
          description: 'Recommended: ''Token YOUR_API_KEY'' or ''Bearer YOUR_API_KEY'''
        - name: key
          in: query
          type: string
          description: 'Fallback: API key as query parameter (optional for demo)'
        - name: page
          in: query
          type: integer
          description: 'Page number (default: 1). Each page contains 50 manufacturers.'
    - name: manufacturers-id
      path: /manufacturers/{id}/
      operations:
      - name: manufacturersread
        method: GET
        description: Get Manufacturer by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
          description: 'Recommended: ''Token YOUR_API_KEY'' or ''Bearer YOUR_API_KEY'''
        - name: key
          in: query
          type: string
          description: 'Fallback: API key as query parameter (optional for demo)'
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.MOBILEAPI_DEV_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: mobileapi-manufacturers-rest
    port: 8080
    description: REST adapter for MobileAPI — manufacturers. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/manufacturers
      name: manufacturers
      description: REST surface for manufacturers.
      operations:
      - method: GET
        name: manufacturerslist
        description: List All Device Manufacturers
        call: mobileapi-manufacturers.manufacturerslist
        with:
          Authorization: rest.Authorization
          key: rest.key
          page: rest.page
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/manufacturers/{id}
      name: manufacturers-id
      description: REST surface for manufacturers-id.
      operations:
      - method: GET
        name: manufacturersread
        description: Get Manufacturer by ID
        call: mobileapi-manufacturers.manufacturersread
        with:
          Authorization: rest.Authorization
          key: rest.key
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: mobileapi-manufacturers-mcp
    port: 9090
    transport: http
    description: MCP adapter for MobileAPI — manufacturers. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-all-device-manufacturers
      description: List All Device Manufacturers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: mobileapi-manufacturers.manufacturerslist
      with:
        Authorization: tools.Authorization
        key: tools.key
        page: tools.page
      outputParameters:
      - type: object
        mapping: $.
    - name: get-manufacturer-id
      description: Get Manufacturer by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: mobileapi-manufacturers.manufacturersread
      with:
        Authorization: tools.Authorization
        key: tools.key
      outputParameters:
      - type: object
        mapping: $.