Query
Federated semantic search
Ask questions across your entire organization. Query searches Slack, Notion, Jira, GitHub, and all connected sources—returning only what the user is allowed to see.
Federated Search
Single query searches across Slack, Notion, Jira, GitHub, and all connected sources simultaneously.
Permission-Aware
Results respect the user's access in each source system. No over-permissioning risk.
Semantic Ranking
AI-powered relevance ranking understands intent, not just keywords.
Source Attribution
Every result includes links back to the original document. Full auditability.
Filters & Facets
Filter by source, date, author, or custom metadata. Faceted navigation for exploration.
Streaming Results
Get results as they're found. Perfect for real-time AI chat interfaces.
import { MetalogueClient } from '@metalogue/sdk';
const client = new MetalogueClient({
apiKey: process.env.METALOGUE_API_KEY
});
// Federated semantic search
const response = await client.query(
'What was the decision on the auth refactor?',
{
limit: 10,
includeReasoning: true,
sources: ['slack', 'notion', 'github'],
filters: {
dateRange: { after: '2026-01-01' },
authors: ['@alice', '@bob']
}
}
);
for (const result of response.results) {
console.log(`[${result.source}] ${result.content}`);
}