examples/n8n-agent/README.md
You can run this example with:
npx promptfoo@latest init --example n8n-agent
This example demonstrates how to evaluate n8n AI agents and workflows using the n8n provider.
promptfooconfig.yaml with your webhook URL:providers:
- id: n8n:https://your-n8n-instance.com/webhook/your-agent-id
export N8N_API_KEY=your-api-key # If your webhook requires authentication
# Run the evaluation
npx promptfoo eval
# View results
npx promptfoo view
url: Webhook URL (alternative to specifying in provider path)method: HTTP method (default: POST); GET sends rendered body fields as query parametersheaders: Additional request headersbody: Custom request body template with Nunjucks support; prefer object form for JSON payloadstransformResponse: JavaScript expression to extract outputsessionHeader: Request header name for the session IDsessionParser: JavaScript expression to extract a session IDsessionField: Request body field for a supplied session IDFor multi-turn runs, pass sessionId in test variables or use a multi-turn strategy so sessions
remain scoped to one conversation. Keep webhook credentials in environment-backed headers rather
than embedding them in webhook URLs. The provider uses a fingerprinted display ID and skips
response caching so tokenized URLs and session-bearing requests do not enter response-cache
diagnostics or storage; URLs still remain in configuration and outbound requests.
The provider automatically handles common n8n response formats:
{ "output": "Response text" }
{ "response": "Agent response" }
{ "message": { "content": "Hello" } }
[{ "json": { "output": "Result" } }]
For custom formats, use transformResponse:
config:
transformResponse: 'json.data.agentMessage'
For more information, see the n8n Provider documentation.