agilent-technologies · Capability

Agilent iLab Operations API — Cores

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

Run with Naftiko Agilent TechnologiesCores

What You Can Do

GET
Listcores — Agilent iLab List Cores
/v1/cores
GET
Getcore — Agilent iLab Get Core
/v1/cores/{core-id}

MCP Tools

agilent-ilab-list-cores

Agilent iLab List Cores

read-only idempotent
agilent-ilab-get-core

Agilent iLab Get Core

read-only idempotent

Capability Spec

agilent-ilab-operations-cores.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Agilent iLab Operations API — Cores
  description: 'Agilent iLab Operations API — Cores. 2 operations. Lead operation: Agilent iLab List Cores. Self-contained
    Naftiko capability covering one Agilent Technologies business surface.'
  tags:
  - Agilent Technologies
  - Cores
  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-cores
    baseUri: https://api.ilabsolutions.com/v1
    description: Agilent iLab Operations API — Cores business capability. Self-contained, no shared references.
    resources:
    - name: cores
      path: /cores
      operations:
      - name: listcores
        method: GET
        description: Agilent iLab List Cores
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: institution_id
          in: query
          type: integer
          description: Filter cores by institution identifier.
        - name: page
          in: query
          type: integer
          description: Page number for paginated results.
        - name: per_page
          in: query
          type: integer
          description: Number of results per page.
    - name: cores-core_id
      path: /cores/{core_id}
      operations:
      - name: getcore
        method: GET
        description: Agilent iLab Get Core
        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
    authentication:
      type: bearer
      token: '{{env.AGILENT_TECHNOLOGIES_API_KEY}}'
  exposes:
  - type: rest
    namespace: agilent-ilab-operations-cores-rest
    port: 8080
    description: REST adapter for Agilent iLab Operations API — Cores. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/cores
      name: cores
      description: REST surface for cores.
      operations:
      - method: GET
        name: listcores
        description: Agilent iLab List Cores
        call: agilent-ilab-operations-cores.listcores
        with:
          institution_id: rest.institution_id
          page: rest.page
          per_page: rest.per_page
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/cores/{core-id}
      name: cores-core-id
      description: REST surface for cores-core_id.
      operations:
      - method: GET
        name: getcore
        description: Agilent iLab Get Core
        call: agilent-ilab-operations-cores.getcore
        with:
          core_id: rest.core_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: agilent-ilab-operations-cores-mcp
    port: 9090
    transport: http
    description: MCP adapter for Agilent iLab Operations API — Cores. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: agilent-ilab-list-cores
      description: Agilent iLab List Cores
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agilent-ilab-operations-cores.listcores
      with:
        institution_id: tools.institution_id
        page: tools.page
        per_page: tools.per_page
      outputParameters:
      - type: object
        mapping: $.
    - name: agilent-ilab-get-core
      description: Agilent iLab Get Core
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agilent-ilab-operations-cores.getcore
      with:
        core_id: tools.core_id
      outputParameters:
      - type: object
        mapping: $.