NewMCP ServerView docs
Integrations

Connect everything.
Search anywhere.

Extensible connector framework for syncing your documents, wikis, tickets, and conversations into one searchable knowledge base.

SDK
Custom Connectors
OAuth
Authentication
Real-time
Sync Updates
RBAC
Permission Model
Planned Integrations

Connect the tools your team already uses

Cloud Storage

G
Google Drive
D
Dropbox
O
OneDrive
B
Box
S3
AWS S3
Az
Azure Blob

Productivity

N
Notion
C
Confluence
SP
SharePoint
Co
Coda
At
Airtable
As
Asana

Communication

Sl
Slack
T
Microsoft Teams
Dc
Discord
I
Intercom
Z
Zendesk
Fd
Freshdesk

Developer Tools

GH
GitHub
GL
GitLab
BB
Bitbucket
J
Jira
L
Linear
Fi
Figma

Databases

PG
PostgreSQL
My
MySQL
Mo
MongoDB
Sf
Snowflake
BQ
BigQuery
Rs
Redshift

Email & Calendar

Gm
Gmail
Ou
Outlook
GC
Google Calendar
OC
Outlook Calendar
Hs
HubSpot
Sf
Salesforce
Simple Setup

Connected in minutes, not days

1

Authenticate

Connect with OAuth or API key in seconds

2

Configure

Select folders, channels, or repositories to sync

3

Sync

Documents are indexed and ready to search

Sync Engine

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

Live
Google Drive
12 files synced
2m ago
Notion
3 pages updated
5m ago
GitHub
2 repos indexed
8m ago
Slack
45 messages indexed
12m ago
Confluence
8 spaces synced
15m ago
Custom Connectors

Build 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

connector.ts
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.