No-Code Integrations
Connect Hebbrix to 6,000+ apps without writing code, using Zapier or n8n. Add AI memory to the tools you already use.
Platforms
Zapier: connect to 6,000+ apps. A no-code automation platform that wires apps together. If you've wished "when X happens in App A, do Y in App B", that's what Zapier does. Learn more
n8n: open-source workflow automation. Self-hostable, with more control over your data. Like Zapier, but you run it yourself. Learn more
Zapier Integration
Quick Start: Save Emails to Memory
Step 1: Create a New Zap
- Open your Zapier account
- Click Create Zap
- Add Gmail as your trigger
- Select New Email trigger
Step 2: Add Hebbrix Action
- Click + to add an action
- Search for Hebbrix
- Select Create Memory action
- Connect with your API key from Dashboard
Step 3: Map Your Data
| Field | Type | Description |
|---|---|---|
| Content | field | {{subject}}: {{snippet}} |
| Source Type | field | email |
| Importance | field | 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. (Slack → Hebbrix: Ask AI → Slack)
- Meeting Notes Archive - Save Zoom transcripts automatically. (Zoom → Hebbrix: Create)
- Daily Digest - Get AI summaries of your memories. (Schedule → Hebbrix: Ask AI → Email)
n8n Integration
Installation
Community Nodes (Recommended)
- In n8n, go to Settings → Community Nodes
- Click Install
- Enter
n8n-nodes-hebbrix - 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
| Field | Type | Description |
|---|---|---|
| Create | operation | Store a new memory |
| Create Many | operation | Batch create (up to 100) |
| Get | operation | Retrieve by ID |
| Search | operation | AI-powered search |
| Update | operation | Modify content/metadata |
| Delete | operation | Remove a memory |
