1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
|
---
title: "Connectors Overview"
description: "Integrate Google Drive, Gmail, Notion, OneDrive, GitHub and Web Crawler to automatically sync documents into your knowledge base"
sidebarTitle: "Overview"
icon: "layers"
---
Connect external platforms to automatically sync documents into supermemory. Supported connectors include Google Drive, Gmail, Notion, OneDrive, GitHub and Web Crawler with real-time synchronization and intelligent content processing.
## Supported Connectors
<CardGroup cols={2}>
<Card title="Google Drive" icon="google-drive" href="/connectors/google-drive">
**Google Docs, Slides, Sheets**
Real-time sync via webhooks. Supports shared drives, nested folders, and collaborative documents.
</Card>
<Card title="Gmail" icon="mail" href="/connectors/gmail">
**Email Threads**
Real-time sync via Pub/Sub webhooks. Syncs threads with full conversation history and metadata.
</Card>
<Card title="Notion" icon="notion" href="/connectors/notion">
**Pages, Databases, Blocks**
Instant sync of workspace content. Handles rich formatting, embeds, and database properties.
</Card>
<Card title="OneDrive" icon="microsoft" href="/connectors/onedrive">
**Word, Excel, PowerPoint**
Scheduled sync every 4 hours. Supports personal and business accounts with file versioning.
</Card>
<Card title="GitHub" icon="github" href="/connectors/github">
**GitHub Repositories**
Real-time incremental sync via webhooks. Supports documentation files in repositories.
</Card>
<Card title="Web Crawler" icon="globe" href="/connectors/web-crawler">
**Web Pages, Documentation**
Crawl websites automatically with robots.txt compliance. Scheduled recrawling keeps content up to date.
</Card>
</CardGroup>
## Quick Start
### 1. Create Connection
<CodeGroup>
```typescript Typescript
import Supermemory from 'supermemory';
const client = new Supermemory({
apiKey: process.env.SUPERMEMORY_API_KEY!
});
const connection = await client.connections.create('notion', {
redirectUrl: 'https://yourapp.com/callback',
containerTags: ['user-123', 'workspace-alpha'],
documentLimit: 5000,
metadata: { department: 'sales' }
});
// Redirect user to complete OAuth
console.log('Auth URL:', connection.authLink);
console.log('Expires in:', connection.expiresIn);
// Output: Auth URL: https://api.notion.com/v1/oauth/authorize?...
// Output: Expires in: 1 hour
```
```python Python
from supermemory import Supermemory
import os
client = Supermemory(api_key=os.environ.get("SUPERMEMORY_API_KEY"))
connection = client.connections.create(
'notion',
redirect_url='https://yourapp.com/callback',
container_tags=['user-123', 'workspace-alpha'],
document_limit=5000,
metadata={'department': 'sales'}
)
# Redirect user to complete OAuth
print(f'Auth URL: {connection.auth_link}')
print(f'Expires in: {connection.expires_in}')
# Output: Auth URL: https://api.notion.com/v1/oauth/authorize?...
# Output: Expires in: 1 hour
```
```bash cURL
curl -X POST "https://api.supermemory.ai/v3/connections/notion" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"redirectUrl": "https://yourapp.com/callback",
"containerTags": ["user-123", "workspace-alpha"],
"documentLimit": 5000,
"metadata": {"department": "sales"}
}'
# Response: {
# "authLink": "https://api.notion.com/v1/oauth/authorize?...",
# "expiresIn": "1 hour",
# "id": "conn_abc123",
# "redirectsTo": "https://yourapp.com/callback"
# }
```
</CodeGroup>
### 2. Handle OAuth Callback
After user completes OAuth, the connection is automatically established and sync begins.
### 3. Monitor Sync Status
<CodeGroup>
```typescript Typescript
import Supermemory from 'supermemory';
const client = new Supermemory({
apiKey: process.env.SUPERMEMORY_API_KEY!
});
// List all connections using SDK
const connections = await client.connections.list({
containerTags: ['user-123', 'workspace-alpha']
});
connections.forEach(conn => {
console.log('Connection:', conn.id);
console.log('Provider:', conn.provider);
console.log('Email:', conn.email);
console.log('Created:', conn.createdAt);
});
// List synced documents (memories) using SDK
const memories = await client.documents.list({
containerTags: ['user-123', 'workspace-alpha']
});
console.log(`Synced ${memories.memories.length} documents`);
// Output: Synced 45 documents
```
```python Python
from supermemory import Supermemory
import os
client = Supermemory(api_key=os.environ.get("SUPERMEMORY_API_KEY"))
# List all connections using SDK
connections = client.connections.list(
container_tags=['user-123', 'workspace-alpha']
)
for conn in connections:
print(f'Connection: {conn.id}')
print(f'Provider: {conn.provider}')
print(f'Email: {conn.email}')
print(f'Created: {conn.created_at}')
# List synced documents (memories) using SDK
memories = client.documents.list(container_tags=['user-123', 'workspace-alpha'])
print(f'Synced {len(memories.memories)} documents')
# Output: Synced 45 documents
```
```bash cURL
# List all connections
curl -X POST "https://api.supermemory.ai/v3/connections/list" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"containerTags": ["user-123", "workspace-alpha"]}'
# Response: [{"id": "conn_abc", "provider": "notion", "email": "[email protected]", ...}]
# List synced documents
curl -X POST "https://api.supermemory.ai/v3/documents/list" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"containerTags": ["user-123", "workspace-alpha"]}'
# Response: {"results": [...], "totalCount": 45}
```
</CodeGroup>
## How Connectors Work
### Authentication Flow
1. **Create Connection**: Call `/v3/connections/{provider}` to get OAuth URL (or direct connection for web-crawler)
2. **User Authorization**: Redirect user to complete OAuth flow (not required for web-crawler)
3. **Automatic Setup**: Connection established, sync begins immediately
4. **Continuous Sync**: Real-time updates via webhooks + scheduled sync every 4 hours (or scheduled recrawling for web-crawler)
### Document Processing Pipeline
```mermaid
graph TD
A[External Document] --> B[Webhook/Schedule Trigger]
B --> C[Content Extraction]
C --> D[Chunking & Embedding]
D --> E[Index in Supermemory]
E --> F[Searchable Memory]
E --> G[Document Search]
```
### Sync Mechanisms
| Provider | Real-time Sync | Scheduled Sync | Manual Sync |
|----------|---------------|----------------|-------------|
| **Google Drive** | ✅ Webhooks (7-day expiry) | ✅ Every 4 hours | ✅ On-demand |
| **Gmail** | ✅ Pub/Sub (7-day expiry) | ✅ Every 4 hours | ✅ On-demand |
| **Notion** | ✅ Webhooks | ✅ Every 4 hours | ✅ On-demand |
| **OneDrive** | ✅ Webhooks (30-day expiry) | ✅ Every 4 hours | ✅ On-demand |
| **GitHub** | ✅ Webhooks | ✅ Every 4 hours | ✅ On-demand |
| **Web Crawler** | ❌ Not supported | ✅ Scheduled recrawling (7+ days) | ✅ On-demand |
## Connection Management
### List All Connections
<CodeGroup>
```typescript Typescript
import Supermemory from 'supermemory';
const client = new Supermemory({
apiKey: process.env.SUPERMEMORY_API_KEY!
});
const connections = await client.connections.list({
containerTags: ['org-123']
});
```
```python Python
from supermemory import Supermemory
import os
client = Supermemory(api_key=os.environ.get("SUPERMEMORY_API_KEY"))
connections = client.connections.list(container_tags=['org-123'])
for conn in connections:
print(f"{conn.provider}: {conn.email} ({conn.id})")
print(f"Documents: {conn.document_limit or 'unlimited'}")
print(f"Expires: {conn.expires_at or 'never'}")
# Output: notion: [email protected] (conn_abc123)
# Output: Documents: 5000
# Output: Expires: never
```
```bash cURL
curl -X POST "https://api.supermemory.ai/v3/connections/list" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"containerTags": ["org-123"]}'
# Response: [
# {
# "id": "conn_abc123",
# "provider": "notion",
# "email": "[email protected]",
# "documentLimit": 5000,
# "createdAt": "2024-01-15T10:30:00.000Z"
# }
# ]
```
</CodeGroup>
### Delete Connections
<CodeGroup>
```typescript Typescript
import Supermemory from 'supermemory';
const client = new Supermemory({
apiKey: process.env.SUPERMEMORY_API_KEY!
});
// Delete by connection ID
const result = await client.connections.deleteByID(connectionId);
// Or delete by provider (requires container tags)
const result = await client.connections.deleteByProvider('notion', {
containerTags: ['user-123']
});
console.log('Deleted:', result.id, result.provider);
```
```python Python
from supermemory import Supermemory
import os
client = Supermemory(api_key=os.environ.get("SUPERMEMORY_API_KEY"))
# Delete by connection ID
result = client.connections.delete_by_id(connection_id)
# Or delete by provider (requires container tags)
result = client.connections.delete_by_provider(
provider='notion',
container_tags=['user-123']
)
print(f"Deleted: {result.id} {result.provider}")
```
```bash cURL
curl -X DELETE "https://api.supermemory.ai/v3/connections/conn_abc123" \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY"
# Response: {
# "id": "conn_abc123",
# "provider": "notion"
# }
```
</CodeGroup>
|