PalveronPalveronDocs

n8n

AI governance for n8n workflows — verify prompts, lookup traces, and monitor agents directly from your automation pipelines.

n8n Integration

The Palveron community node for n8n lets you add AI governance to any workflow. Verify prompts before they reach an LLM, look up audit traces, and monitor agent status — all without writing code.

Installation

In your n8n instance:

npm install n8n-nodes-palveron

Or via n8n UI: Settings → Community Nodes → Install → n8n-nodes-palveron

Setup

  1. Get your API key from the Palveron Dashboard → Settings → API Keys
  2. In n8n: Settings → Credentials → New → Palveron API
  3. Enter your API key and optionally your gateway URL for on-prem

Operations

OperationDescription
VerifyCheck a prompt against governance policies. Returns ALLOWED, BLOCKED, or MODIFIED.
Trace LookupGet full details of a specific governance trace by ID.
List TracesList recent traces with optional decision filter (ALLOWED/BLOCKED/MODIFIED).
Agent StatusCheck the status of a registered AI agent.
Health CheckVerify the Palveron gateway is running.

Example: Governed AI Pipeline

Build a workflow that governs every LLM call:

  1. Webhook trigger receives user input
  2. Palveron Verify node checks the input against your policies
  3. Router splits by decision:
    • ALLOWED → send to OpenAI/Claude for processing
    • BLOCKED → return error response with reason and trace ID
    • MODIFIED → send the sanitized output (PII redacted) to the LLM

Example: Daily Compliance Report

Schedule a daily workflow that reports all blocked traces:

  1. Schedule trigger (daily at 9am)
  2. Palveron List Traces with decision filter = BLOCKED
  3. Send Email or Slack with the blocked trace summary

On-Premise

Change the Base URL in your Palveron credential to your internal gateway address.

Source Code

Open source (MIT): github.com/palveron/n8n-nodes-palveron.

Next Steps

On this page