Agent Client Protocol - v0.5.1
    Preparing search index...

    Interface Implementation

    Describes the name and version of an MCP implementation, with an optional title for UI representation.

    interface Implementation {
        name: string;
        title?: string | null;
        version: string;
    }
    Index

    Properties

    Properties

    name: string

    Intended for programmatic or logical use, but can be used as a display name fallback if title isn’t present.

    title?: string | null

    Intended for UI and end-user contexts — optimized to be human-readable and easily understood.

    If not provided, the name should be used for display.

    version: string

    Version of the implementation. Can be displayed to the user or used for debugging or metrics purposes.