agilent-technologies · Capability

Agilent iLab Operations API — Services

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

Run with Naftiko Agilent TechnologiesServices

What You Can Do

GET
Listservices — Agilent iLab List Services
/v1/cores/{core-id}/services
GET
Listserviceprices — Agilent iLab List Service Prices
/v1/cores/{core-id}/services/{service-id}/prices
PUT
Updateserviceprice — Agilent iLab Update Service Price
/v1/cores/{core-id}/services/{service-id}/prices/{price-id}

MCP Tools

agilent-ilab-list-services

Agilent iLab List Services

read-only idempotent
agilent-ilab-list-service-prices

Agilent iLab List Service Prices

read-only idempotent
agilent-ilab-update-service-price

Agilent iLab Update Service Price

idempotent

Capability Spec

agilent-ilab-operations-services.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Agilent iLab Operations API — Services
  description: 'Agilent iLab Operations API — Services. 3 operations. Lead operation: Agilent iLab List Services. Self-contained
    Naftiko capability covering one Agilent Technologies business surface.'
  tags:
  - Agilent Technologies
  - Services
  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-services
    baseUri: https://api.ilabsolutions.com/v1
    description: Agilent iLab Operations API — Services business capability. Self-contained, no shared references.
    resources:
    - name: cores-core_id-services
      path: /cores/{core_id}/services
      operations:
      - name: listservices
        method: GET
        description: Agilent iLab List Services
        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: cores-core_id-services-service_id-prices
      path: /cores/{core_id}/services/{service_id}/prices
      operations:
      - name: listserviceprices
        method: GET
        description: Agilent iLab List Service Prices
        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: service_id
          in: path
          type: integer
          description: Unique identifier for the service.
          required: true
    - name: cores-core_id-services-service_id-prices-price_id
      path: /cores/{core_id}/services/{service_id}/prices/{price_id}
      operations:
      - name: updateserviceprice
        method: PUT
        description: Agilent iLab Update Service Price
        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: service_id
          in: path
          type: integer
          description: Unique identifier for the service.
          required: true
        - name: price_id
          in: path
          type: integer
          description: Unique identifier for the price record.
          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-services-rest
    port: 8080
    description: REST adapter for Agilent iLab Operations API — Services. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/cores/{core-id}/services
      name: cores-core-id-services
      description: REST surface for cores-core_id-services.
      operations:
      - method: GET
        name: listservices
        description: Agilent iLab List Services
        call: agilent-ilab-operations-services.listservices
        with:
          core_id: rest.core_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/cores/{core-id}/services/{service-id}/prices
      name: cores-core-id-services-service-id-prices
      description: REST surface for cores-core_id-services-service_id-prices.
      operations:
      - method: GET
        name: listserviceprices
        description: Agilent iLab List Service Prices
        call: agilent-ilab-operations-services.listserviceprices
        with:
          core_id: rest.core_id
          service_id: rest.service_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/cores/{core-id}/services/{service-id}/prices/{price-id}
      name: cores-core-id-services-service-id-prices-price-id
      description: REST surface for cores-core_id-services-service_id-prices-price_id.
      operations:
      - method: PUT
        name: updateserviceprice
        description: Agilent iLab Update Service Price
        call: agilent-ilab-operations-services.updateserviceprice
        with:
          core_id: rest.core_id
          service_id: rest.service_id
          price_id: rest.price_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: agilent-ilab-operations-services-mcp
    port: 9090
    transport: http
    description: MCP adapter for Agilent iLab Operations API — Services. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: agilent-ilab-list-services
      description: Agilent iLab List Services
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agilent-ilab-operations-services.listservices
      with:
        core_id: tools.core_id
      outputParameters:
      - type: object
        mapping: $.
    - name: agilent-ilab-list-service-prices
      description: Agilent iLab List Service Prices
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agilent-ilab-operations-services.listserviceprices
      with:
        core_id: tools.core_id
        service_id: tools.service_id
      outputParameters:
      - type: object
        mapping: $.
    - name: agilent-ilab-update-service-price
      description: Agilent iLab Update Service Price
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: agilent-ilab-operations-services.updateserviceprice
      with:
        core_id: tools.core_id
        service_id: tools.service_id
        price_id: tools.price_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.