mcp-use TypeScript API
    Preparing search index...

    Interface LandingPageOptions

    Inputs used to render the v1-compatible MCP server landing page.

    interface LandingPageOptions {
        description?: string;
        iconType?: string;
        iconUrl?: string;
        name: string;
        prompts?: readonly LandingPagePrompt[];
        resources?: readonly LandingPageResource[];
        title?: string;
        tools?: readonly LandingPageTool[];
        url: string;
        version: string;
    }
    Index
    description?: string

    Optional server description.

    iconType?: string

    MIME type for the favicon link tag when known.

    iconUrl?: string

    Optional absolute URL for the icon displayed above the server heading.

    name: string

    Protocol-facing server name.

    prompts?: readonly LandingPagePrompt[]

    Optional prompts shown in the primitives list.

    resources?: readonly LandingPageResource[]

    Optional static resources shown in the primitives list.

    title?: string

    Optional human-readable server title used as the page heading.

    tools?: readonly LandingPageTool[]

    Optional tools shown in the primitives list.

    url: string

    Absolute public URL of the MCP endpoint.

    version: string

    Server version shown beside the heading.