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

    Subset of an MCP server's persisted configuration that an install flow may carry: either set by a registry entry or hand-crafted in an install URL. Lives in common so @theia/ai-registry (which resolves registry entries in common) can reference the same canonical shape the browser-side install path writes.

    interface MCPInstallEntryConfig {
        args?: string[];
        command?: string;
        env?: Record<string, string>;
        headers?: Record<string, string>;
        oauth?: MCPOAuthConfig;
        serverAuthToken?: string;
        serverAuthTokenHeader?: string;
        serverUrl?: string;
    }
    Index

    Properties

    args?: string[]
    command?: string
    env?: Record<string, string>
    headers?: Record<string, string>

    OAuth configuration for remote servers. The registry supplies the fixed parts (scopes, authorization server, resource); the confidential-client clientId/clientSecret are collected from the user at install time when the entry advertises them.

    serverAuthToken?: string
    serverAuthTokenHeader?: string
    serverUrl?: string