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

    Interface ResearchAddResponse

    Response from research_add tool.

    interface ResearchAddResponse {
        success: boolean;
        paperId: string;
        title: string;
        message: string;
        dryRun: boolean;
        errorCategory?:
            | "validation"
            | "internal"
            | "transient"
            | "permission"
            | "business";
    }
    Index

    Properties

    success: boolean

    Whether the operation succeeded

    paperId: string

    Paper ID

    title: string

    Paper title (empty on failure)

    message: string

    Human-readable message

    dryRun: boolean

    Whether this was a dry run

    errorCategory?:
        | "validation"
        | "internal"
        | "transient"
        | "permission"
        | "business"

    Error category when success is false (#2649). business for a dedup hit (paper already in registry); absent otherwise — the MCP handler treats absent as internal.