Weaviate · Capability

Weaviate REST API — nodes

Weaviate REST API — nodes. 2 operations. Lead operation: Weaviate Get Node Status. Self-contained Naftiko capability covering one Weaviate business surface.

Run with Naftiko Weaviatenodes

What You Can Do

GET
Nodesget — Weaviate Get Node Status
/v1/nodes
GET
Nodesgetclass — Weaviate Get Node Status By Collection
/v1/nodes/{classname}

MCP Tools

weaviate-get-node-status

Weaviate Get Node Status

read-only idempotent
weaviate-get-node-status-collection

Weaviate Get Node Status By Collection

read-only idempotent

Capability Spec

weaviate-nodes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Weaviate REST API — nodes
  description: 'Weaviate REST API — nodes. 2 operations. Lead operation: Weaviate Get Node Status. Self-contained Naftiko
    capability covering one Weaviate business surface.'
  tags:
  - Weaviate
  - nodes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEAVIATE_API_KEY: WEAVIATE_API_KEY
capability:
  consumes:
  - type: http
    namespace: weaviate-nodes
    baseUri: http://localhost:8080
    description: Weaviate REST API — nodes business capability. Self-contained, no shared references.
    resources:
    - name: nodes
      path: /nodes
      operations:
      - name: nodesget
        method: GET
        description: Weaviate Get Node Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: output
          in: query
          type: string
          description: 'Controls the verbosity of the output, possible values are: `minimal`, `verbose`. Defaults to `minimal`.'
    - name: nodes-className
      path: /nodes/{className}
      operations:
      - name: nodesgetclass
        method: GET
        description: Weaviate Get Node Status By Collection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: className
          in: path
          type: string
          description: The name of the collection (class) for which to retrieve node status.
          required: true
        - name: shardName
          in: query
          type: string
        - name: output
          in: query
          type: string
          description: 'Controls the verbosity of the output, possible values are: `minimal`, `verbose`. Defaults to `minimal`.'
    authentication:
      type: bearer
      token: '{{env.WEAVIATE_API_KEY}}'
  exposes:
  - type: rest
    namespace: weaviate-nodes-rest
    port: 8080
    description: REST adapter for Weaviate REST API — nodes. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/nodes
      name: nodes
      description: REST surface for nodes.
      operations:
      - method: GET
        name: nodesget
        description: Weaviate Get Node Status
        call: weaviate-nodes.nodesget
        with:
          output: rest.output
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/nodes/{classname}
      name: nodes-classname
      description: REST surface for nodes-className.
      operations:
      - method: GET
        name: nodesgetclass
        description: Weaviate Get Node Status By Collection
        call: weaviate-nodes.nodesgetclass
        with:
          className: rest.className
          shardName: rest.shardName
          output: rest.output
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: weaviate-nodes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Weaviate REST API — nodes. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: weaviate-get-node-status
      description: Weaviate Get Node Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: weaviate-nodes.nodesget
      with:
        output: tools.output
      outputParameters:
      - type: object
        mapping: $.
    - name: weaviate-get-node-status-collection
      description: Weaviate Get Node Status By Collection
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: weaviate-nodes.nodesgetclass
      with:
        className: tools.className
        shardName: tools.shardName
        output: tools.output
      outputParameters:
      - type: object
        mapping: $.