Wallarm · Capability

Wallarm API — Nodes

Wallarm API — Nodes. 2 operations. Lead operation: List Filter Nodes. Self-contained Naftiko capability covering one Wallarm business surface.

Run with Naftiko WallarmNodes

What You Can Do

POST
Listnodes — List Filter Nodes
/v1/v1/objects/node
POST
Createnode — Create Filter Node
/v1/v2/node

MCP Tools

list-filter-nodes

List Filter Nodes

read-only
create-filter-node

Create Filter Node

Capability Spec

wallarm-nodes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Wallarm API — Nodes
  description: 'Wallarm API — Nodes. 2 operations. Lead operation: List Filter Nodes. Self-contained Naftiko capability covering
    one Wallarm business surface.'
  tags:
  - Wallarm
  - Nodes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WALLARM_API_KEY: WALLARM_API_KEY
capability:
  consumes:
  - type: http
    namespace: wallarm-nodes
    baseUri: https://us1.api.wallarm.com
    description: Wallarm API — Nodes business capability. Self-contained, no shared references.
    resources:
    - name: v1-objects-node
      path: /v1/objects/node
      operations:
      - name: listnodes
        method: POST
        description: List Filter Nodes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v2-node
      path: /v2/node
      operations:
      - name: createnode
        method: POST
        description: Create Filter Node
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-WallarmApi-Token
      value: '{{env.WALLARM_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: wallarm-nodes-rest
    port: 8080
    description: REST adapter for Wallarm API — Nodes. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/v1/objects/node
      name: v1-objects-node
      description: REST surface for v1-objects-node.
      operations:
      - method: POST
        name: listnodes
        description: List Filter Nodes
        call: wallarm-nodes.listnodes
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/node
      name: v2-node
      description: REST surface for v2-node.
      operations:
      - method: POST
        name: createnode
        description: Create Filter Node
        call: wallarm-nodes.createnode
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: wallarm-nodes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Wallarm API — Nodes. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-filter-nodes
      description: List Filter Nodes
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: wallarm-nodes.listnodes
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: create-filter-node
      description: Create Filter Node
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: wallarm-nodes.createnode
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.