Sonatype Nexus · Capability

Sonatype Nexus Repository Manager — System: Nodes

Sonatype Nexus Repository Manager — System: Nodes. 3 operations. Lead operation: Get information about all nodes. Self-contained Naftiko capability covering one Sonatype Nexus business surface.

Run with Naftiko Sonatype NexusSystem: Nodes

What You Can Do

GET
Getsysteminformation — Get information about all nodes
/v1/beta/system/information
DELETE
Clear — Reset the ID for this node. Takes effect after restart and should only be used when cloning an instance
/v1/v1/system/node
GET
Getnodeid — Get information about this node
/v1/v1/system/node

MCP Tools

get-information-about-all-nodes

Get information about all nodes

read-only idempotent
reset-id-this-node-takes

Reset the ID for this node. Takes effect after restart and should only be used when cloning an instance

idempotent
get-information-about-this-node

Get information about this node

read-only idempotent

Capability Spec

repository-system-nodes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: 'Sonatype Nexus Repository Manager — System: Nodes'
  description: 'Sonatype Nexus Repository Manager — System: Nodes. 3 operations. Lead operation: Get information about all
    nodes. Self-contained Naftiko capability covering one Sonatype Nexus business surface.'
  tags:
  - Sonatype Nexus
  - 'System: Nodes'
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SONATYPE_NEXUS_API_KEY: SONATYPE_NEXUS_API_KEY
capability:
  consumes:
  - type: http
    namespace: repository-system-nodes
    baseUri: ''
    description: 'Sonatype Nexus Repository Manager — System: Nodes business capability. Self-contained, no shared references.'
    resources:
    - name: beta-system-information
      path: /beta/system/information
      operations:
      - name: getsysteminformation
        method: GET
        description: Get information about all nodes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-system-node
      path: /v1/system/node
      operations:
      - name: clear
        method: DELETE
        description: Reset the ID for this node. Takes effect after restart and should only be used when cloning an instance
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: getnodeid
        method: GET
        description: Get information about this node
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.SONATYPE_NEXUS_USER}}'
      password: '{{env.SONATYPE_NEXUS_PASS}}'
  exposes:
  - type: rest
    namespace: repository-system-nodes-rest
    port: 8080
    description: 'REST adapter for Sonatype Nexus Repository Manager — System: Nodes. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.'
    resources:
    - path: /v1/beta/system/information
      name: beta-system-information
      description: REST surface for beta-system-information.
      operations:
      - method: GET
        name: getsysteminformation
        description: Get information about all nodes
        call: repository-system-nodes.getsysteminformation
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/system/node
      name: v1-system-node
      description: REST surface for v1-system-node.
      operations:
      - method: DELETE
        name: clear
        description: Reset the ID for this node. Takes effect after restart and should only be used when cloning an instance
        call: repository-system-nodes.clear
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getnodeid
        description: Get information about this node
        call: repository-system-nodes.getnodeid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: repository-system-nodes-mcp
    port: 9090
    transport: http
    description: 'MCP adapter for Sonatype Nexus Repository Manager — System: Nodes. One tool per consumed operation, routed
      inline through this capability''s consumes block.'
    tools:
    - name: get-information-about-all-nodes
      description: Get information about all nodes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repository-system-nodes.getsysteminformation
      outputParameters:
      - type: object
        mapping: $.
    - name: reset-id-this-node-takes
      description: Reset the ID for this node. Takes effect after restart and should only be used when cloning an instance
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: repository-system-nodes.clear
      outputParameters:
      - type: object
        mapping: $.
    - name: get-information-about-this-node
      description: Get information about this node
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repository-system-nodes.getnodeid
      outputParameters:
      - type: object
        mapping: $.