nexus-agents - v2.80.0
    Preparing search index...

    Interface ResearchAddSourceResponse

    MCP exports - MCP server implementation Split from index.ts for file size compliance (Issue #285) Updated Issue #538: Added missing tool registration exports

    interface ResearchAddSourceResponse {
        success: boolean;
        sourceId: string;
        name: string;
        quality_score: number;
        evidence_tier: string;
        message: string;
        dryRun: boolean;
        errorCategory?:
            | "validation"
            | "internal"
            | "transient"
            | "permission"
            | "business";
    }
    Index

    Properties

    success: boolean
    sourceId: string
    name: string
    quality_score: number
    evidence_tier: string
    message: string
    dryRun: boolean
    errorCategory?:
        | "validation"
        | "internal"
        | "transient"
        | "permission"
        | "business"

    Error category when success is false (#2649). business for a dedup hit (source already in registry), internal for a write failure; absent otherwise.