No-Code Integrations
Connect Hebbrix to 6,000+ apps with zero code using Zapier or n8n. Add AI memory to your favorite tools in minutes.
Zapier
Connect to 6,000+ apps. No-code automation platform that connects apps together. If you've wished "when X happens in App A, do Y in App B" - that's what Zapier does.
Learn moren8n
Open-source workflow automation. Self-hostable with more control over your data. Like Zapier but you can self-host it.
Learn moreZapier Integration
Quick Start: Save Emails to Memory
Step 1: Create a New Zap
- 1. Open your Zapier account
- 2. Click Create Zap
- 3. Add Gmail as your trigger
- 4. Select New Email trigger
Step 2: Add Hebbrix Action
- 1. Click + to add an action
- 2. Search for Hebbrix
- 3. Select Create Memory action
- 4. Connect with your API key from Dashboard
Step 3: Map Your Data
| Field | Value |
|---|---|
| Content | {{subject}}: {{snippet}} |
| Source Type | email |
| Importance | 0.7 |
Available Zapier Actions
Create Memory
Store any piece of information as a searchable memory.
Search Memories
Find relevant memories using AI-powered search.
Ask AI With Memory
Get AI responses that include relevant memories.
Update Memory
Modify existing memory content or metadata.
Example Zaps
Slack AI Assistant
Answer questions in Slack using your knowledge base.
Meeting Notes Archive
Save Zoom transcripts automatically.
Daily Digest
Get AI summaries of your memories.
n8n Integration
Installation
Community Nodes
- 1. In n8n, go to Settings → Community Nodes
- 2. Click Install
- 3. Enter
n8n-nodes-hebbrix - 4. Click Install
Docker
Add to your environment variables:
N8N_CUSTOM_EXTENSIONS: "n8n-nodes-hebbrix"Using HTTP Request Node
For advanced use cases, use the HTTP Request node directly:
// Method: POST
// URL: https://api.hebbrix.com/v1/memories
// Authentication: Bearer Token → {{ $credentials.hebbrixApi.apiKey }}
// Body (JSON):
{
"content": "{{ $json.emailContent }}",
"source_type": "n8n",
"importance": 0.7,
"metadata": {
"workflow": "email-capture"
}
}// Method: POST
// URL: https://api.hebbrix.com/v1/search
// Body (JSON):
{
"query": "{{ $json.searchQuery }}",
"search_type": "hybrid",
"limit": 10
}Hebbrix Node Operations
| Operation | Description |
|---|---|
| Create | Store a new memory |
| Create Many | Batch create (up to 100) |
| Get | Retrieve by ID |
| Search | AI-powered search |
| Update | Modify content/metadata |
| Delete | Remove a memory |
