Connect everything.
Search anywhere.
Extensible connector framework for syncing your documents, wikis, tickets, and conversations into one searchable knowledge base.
Connect the tools your team already uses
Cloud Storage
Productivity
Communication
Developer Tools
Databases
Email & Calendar
Connected in minutes, not days
Authenticate
Connect with OAuth or API key in seconds
Configure
Select folders, channels, or repositories to sync
Sync
Documents are indexed and ready to search
Always up to date
Our intelligent sync engine keeps your knowledge base fresh with minimal overhead, preserving permissions and detecting changes in real-time.
Real-time Sync
Changes in source systems are detected and indexed within minutes.
Incremental Updates
Only new or modified content is processed, minimizing resource usage.
Permission Sync
Document permissions from source systems are preserved and enforced.
Historical Import
Backfill years of historical data with our bulk import capabilities.
Sync Activity
LiveBuild your own integrations
Need to connect a proprietary system or custom database? Our Connector SDK makes it easy to build, test, and deploy custom integrations.
REST & GraphQL APIs
Connect any API with our flexible adapter framework
Webhook Support
Receive push notifications for real-time updates
Batch Import
Bulk upload files via S3, SFTP, or direct upload
Enterprise Support
Custom connector development available for Enterprise plans
import { Connector } from "@lakehouse42/sdk";
export default new Connector({
name: "custom-crm",
auth: { type: "oauth2" },
async fetchDocuments(cursor) {
const response = await this.client.get(
"/api/documents",
{ after: cursor }
);
return {
documents: response.data,
nextCursor: response.pagination.next,
};
},
async onWebhook(event) {
// Handle real-time updates
if (event.type === "document.updated") {
await this.sync(event.documentId);
}
},
});Connect your knowledge today
Start your free trial and connect your first data source in under 5 minutes.