Acronis · Capability

Acronis Agent Management REST API — Hardware Nodes

Acronis Agent Management REST API — Hardware Nodes. 2 operations. Lead operation: Acronis List Hardware Nodes. Self-contained Naftiko capability covering one Acronis business surface.

Run with Naftiko AcronisHardware Nodes

What You Can Do

GET
Listhardwarenodes — Acronis List Hardware Nodes
/v1/hardware-nodes
GET
Gethardwarenode — Acronis Get Hardware Node
/v1/hardware-nodes/{node-id}

MCP Tools

acronis-list-hardware-nodes

Acronis List Hardware Nodes

read-only idempotent
acronis-get-hardware-node

Acronis Get Hardware Node

read-only idempotent

Capability Spec

agent-management-hardware-nodes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Acronis Agent Management REST API — Hardware Nodes
  description: 'Acronis Agent Management REST API — Hardware Nodes. 2 operations. Lead operation: Acronis List Hardware Nodes.
    Self-contained Naftiko capability covering one Acronis business surface.'
  tags:
  - Acronis
  - Hardware Nodes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ACRONIS_API_KEY: ACRONIS_API_KEY
capability:
  consumes:
  - type: http
    namespace: agent-management-hardware-nodes
    baseUri: https://{datacenter}.acronis.com/api/agent_manager/v2
    description: Acronis Agent Management REST API — Hardware Nodes business capability. Self-contained, no shared references.
    resources:
    - name: hardware_nodes
      path: /hardware_nodes
      operations:
      - name: listhardwarenodes
        method: GET
        description: Acronis List Hardware Nodes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tenant_id
          in: query
          type: string
          description: Tenant UUID to scope listing
          required: true
    - name: hardware_nodes-node_id
      path: /hardware_nodes/{node_id}
      operations:
      - name: gethardwarenode
        method: GET
        description: Acronis Get Hardware Node
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: node_id
          in: path
          type: string
          description: Hardware node identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.ACRONIS_API_KEY}}'
  exposes:
  - type: rest
    namespace: agent-management-hardware-nodes-rest
    port: 8080
    description: REST adapter for Acronis Agent Management REST API — Hardware Nodes. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/hardware-nodes
      name: hardware-nodes
      description: REST surface for hardware_nodes.
      operations:
      - method: GET
        name: listhardwarenodes
        description: Acronis List Hardware Nodes
        call: agent-management-hardware-nodes.listhardwarenodes
        with:
          tenant_id: rest.tenant_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/hardware-nodes/{node-id}
      name: hardware-nodes-node-id
      description: REST surface for hardware_nodes-node_id.
      operations:
      - method: GET
        name: gethardwarenode
        description: Acronis Get Hardware Node
        call: agent-management-hardware-nodes.gethardwarenode
        with:
          node_id: rest.node_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: agent-management-hardware-nodes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Acronis Agent Management REST API — Hardware Nodes. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: acronis-list-hardware-nodes
      description: Acronis List Hardware Nodes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-management-hardware-nodes.listhardwarenodes
      with:
        tenant_id: tools.tenant_id
      outputParameters:
      - type: object
        mapping: $.
    - name: acronis-get-hardware-node
      description: Acronis Get Hardware Node
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-management-hardware-nodes.gethardwarenode
      with:
        node_id: tools.node_id
      outputParameters:
      - type: object
        mapping: $.