Theia API Documentation v1.69.0
    Preparing search index...

    Contribution point for external packages to provide additional generic capabilities. For example, the MCP package can contribute MCP tool functions without creating coupling between unrelated packages.

    interface GenericCapabilitiesContribution {
        capabilityType: keyof GenericCapabilitySelections;
        onDidChange?: Event<void>;
        getAvailableCapabilities(): MaybePromise<GenericCapabilityGroup[]>;
    }

    Implemented by

    Index

    Properties

    capabilityType: keyof GenericCapabilitySelections

    The capability type this contribution provides items for

    onDidChange?: Event<void>

    Event fired when available capabilities from this contribution change

    Methods