agilent-technologies · Capability

Agilent iLab Operations API — Service Requests

Agilent iLab Operations API — Service Requests. 2 operations. Lead operation: Agilent iLab List Service Requests. Self-contained Naftiko capability covering one Agilent Technologies business surface.

Run with Naftiko Agilent TechnologiesService Requests

What You Can Do

GET
Listservicerequests — Agilent iLab List Service Requests
/v1/cores/{core-id}/service-requests
POST
Createservicerequest — Agilent iLab Create Service Request
/v1/cores/{core-id}/service-requests

MCP Tools

agilent-ilab-list-service-requests

Agilent iLab List Service Requests

read-only idempotent
agilent-ilab-create-service-request

Agilent iLab Create Service Request

Capability Spec

agilent-ilab-operations-service-requests.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Agilent iLab Operations API — Service Requests
  description: 'Agilent iLab Operations API — Service Requests. 2 operations. Lead operation: Agilent iLab List Service Requests.
    Self-contained Naftiko capability covering one Agilent Technologies business surface.'
  tags:
  - Agilent Technologies
  - Service Requests
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AGILENT_TECHNOLOGIES_API_KEY: AGILENT_TECHNOLOGIES_API_KEY
capability:
  consumes:
  - type: http
    namespace: agilent-ilab-operations-service-requests
    baseUri: https://api.ilabsolutions.com/v1
    description: Agilent iLab Operations API — Service Requests business capability. Self-contained, no shared references.
    resources:
    - name: cores-core_id-service_requests
      path: /cores/{core_id}/service_requests
      operations:
      - name: listservicerequests
        method: GET
        description: Agilent iLab List Service Requests
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: core_id
          in: path
          type: integer
          description: Unique identifier for the core facility.
          required: true
        - name: status
          in: query
          type: string
          description: Filter by request status (submitted, processing, completed, cancelled).
        - name: page
          in: query
          type: integer
          description: Page number for paginated results.
      - name: createservicerequest
        method: POST
        description: Agilent iLab Create Service Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: core_id
          in: path
          type: integer
          description: Unique identifier for the core facility.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.AGILENT_TECHNOLOGIES_API_KEY}}'
  exposes:
  - type: rest
    namespace: agilent-ilab-operations-service-requests-rest
    port: 8080
    description: REST adapter for Agilent iLab Operations API — Service Requests. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/cores/{core-id}/service-requests
      name: cores-core-id-service-requests
      description: REST surface for cores-core_id-service_requests.
      operations:
      - method: GET
        name: listservicerequests
        description: Agilent iLab List Service Requests
        call: agilent-ilab-operations-service-requests.listservicerequests
        with:
          core_id: rest.core_id
          status: rest.status
          page: rest.page
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createservicerequest
        description: Agilent iLab Create Service Request
        call: agilent-ilab-operations-service-requests.createservicerequest
        with:
          core_id: rest.core_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: agilent-ilab-operations-service-requests-mcp
    port: 9090
    transport: http
    description: MCP adapter for Agilent iLab Operations API — Service Requests. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: agilent-ilab-list-service-requests
      description: Agilent iLab List Service Requests
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agilent-ilab-operations-service-requests.listservicerequests
      with:
        core_id: tools.core_id
        status: tools.status
        page: tools.page
      outputParameters:
      - type: object
        mapping: $.
    - name: agilent-ilab-create-service-request
      description: Agilent iLab Create Service Request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: agilent-ilab-operations-service-requests.createservicerequest
      with:
        core_id: tools.core_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.