@modelcontextprotocol/sdk
    Preparing search index...

    Interface PromptReference

    Identifies a prompt.

    interface PromptReference {
        name: string;
        title?: string;
        type: "ref/prompt";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    name: string

    Intended for programmatic or logical use, but used as a display name in past specs or fallback (if title isn't present).

    title?: string

    Intended for UI and end-user contexts — optimized to be human-readable and easily understood, even by those unfamiliar with domain-specific terminology.

    If not provided, the name should be used for display (except for Tool, where annotations.title should be given precedence over using name, if present).

    type: "ref/prompt"