Skip to main content

Overview

With the Qontext n8n integration, you can:
  • Build AI-driven workflows that dynamically retrieve context from Qontext’s Retrieval API
  • Create custom ingestion pipelines for your own or third-party tools
Our n8n integration is available as a community node for the self-hosted version. We’re actively working to make it available for n8n Cloud.

Installation

1

Open Settings

Go to your n8n dashboard and open Settings → Community Nodes.
Click settings in n8n dashboardOpen community nodes section
2

Install the Qontext Node

Open the installation modal and enter the package name:
n8n-nodes-qontext
Install Qontext node
3

Confirm Installation

Confirm the installation in the modal. The Qontext node will now be available in your workflow editor.

Using Qontext in n8n Cloud

If you’re using n8n Cloud, you can integrate Qontext via the HTTP Request Node:
1

Add HTTP Request Node

Add an HTTP Request node to your workflow.
2

Configure the Request

Set up your API call:
  • Method: POST
  • URL: https://api.qontext.ai/v1/retrieval
  • Headers: Add X-API-Key with your Qontext API key
  • Body: Your retrieval request payload
3

Import from cURL

Alternatively, use the cURL import button to paste API examples directly from the Qontext API Reference.

Example: Retrieve Context in a Workflow

Here’s an example HTTP Request configuration for context retrieval:
{
  "workspaceId": "ws_your-workspace-id",
  "knowledgeGraphId": "kg_your-vault-id",
  "prompt": "What are the latest updates on Project X?",
  "limit": 5,
  "depth": 1,
  "rerank": true
}

Need Help?

If you’d like early access to the n8n Cloud integration or need assistance, reach out at [email protected].