Member Junction
    Preparing search index...

    Action that executes a universal search across the organization's knowledge base.

    This action delegates to the @memberjunction/search-engine singleton which orchestrates vector similarity search, full-text search, entity LIKE-based search, and (optionally) storage file search. Results are fused via Reciprocal Rank Fusion (RRF), deduplicated, and enriched with entity icons, record names, and tags.

    Designed for use by AI agents (Sage, etc.), MCP connectors, A2A connectors, and workflow orchestration.

    // Simple search
    await runAction({
    ActionName: 'Search',
    Params: [{ Name: 'Query', Value: 'quarterly revenue by region' }]
    });

    // Advanced search with filters
    await runAction({
    ActionName: 'Search',
    Params: [
    { Name: 'Query', Value: 'customer onboarding process' },
    { Name: 'MaxResults', Value: 10 },
    { Name: 'MinScore', Value: 0.3 },
    { Name: 'EntityNames', Value: 'Documents,Knowledge Articles' },
    { Name: 'IncludeSources', Value: 'vector,fulltext' }
    ]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods