Theia API Documentation v1.66.0
    Preparing search index...
    interface MCPServerManagerServerClient {
        addServerDescription(
            description: MCPServerDescription,
        ): MCPServerDescriptionRCP;
        cleanServers(serverNames: string[]): void;
        getResolveFunction(
            name: string,
        ):
            | undefined
            | ((description: MCPServerDescription) => Promise<MCPServerDescription>);
        resolveServerDescription(
            description: MCPServerDescriptionRCP,
        ): Promise<MCPServerDescription>;
    }

    Implemented by

    Index

    Methods

    • Removes server descriptions that are no longer present in the MCPServerManager.

      Parameters

      • serverNames: string[]

        The current list of server names from the MCPServerManager.

      Returns void