Raw Pipes
Slack
Connect your Slack workspace to enable semantic search across messages, threads, and channels.
Features
✓Full message history sync
✓Thread context preservation
✓Channel-level permissions
✓Real-time webhook updates
✓Private channel support (with auth)
✓File and attachment indexing
Quick Start
import { Metalogue } from '@metalogue/sdk';
const client = new Metalogue({ apiKey: 'mtlg_...' });
// Connect Slack
await client.sync('slack', {
// Configuration options
});
// Query Slack data
const results = await client.query({
question: 'Your question here',
sources: ['slack']
});